Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ec-europa/ecl-ssg into ec-playground
Browse files Browse the repository at this point in the history
  • Loading branch information
planctus committed Aug 3, 2023
2 parents 257f67e + 4fbed04 commit 295a839
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
deploy-preview:
name: deploy full preview
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && github.ref != 'refs/heads/ec-playground' && github.ref != 'refs/heads/eu-playground'
if: github.ref != 'refs/heads/ec-playground' && github.ref != 'refs/heads/eu-playground'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -57,7 +57,7 @@ jobs:
deploy-ec:
name: deploy ec playground
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && github.ref == 'refs/heads/ec-playground'
if: github.ref == 'refs/heads/ec-playground'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -79,7 +79,7 @@ jobs:
deploy-eu:
name: deploy eu playground
runs-on: ubuntu-latest
if: github.event_name == 'pull_request' && github.ref == 'refs/heads/eu-playground'
if: github.ref == 'refs/heads/eu-playground'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down

1 comment on commit 295a839

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.