Skip to content

Commit

Permalink
ci: fix deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
gurvancampion committed Oct 18, 2022
1 parent 0afd5a5 commit bc6a524
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
name: Deploy docs from main branch 🚀
needs: [build, lint, test]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.ref_type == 'tag'
if: github.ref_type == 'tag'

environment:
name: Docs (main)
Expand All @@ -100,7 +100,7 @@ jobs:
name: Deploy web app from main branch 🚀
needs: [build, lint, test]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.ref_type == 'tag'
if: github.ref_type == 'tag'

environment:
name: Web (main)
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
name: Deploy UI from main branch 🚀
needs: [build, lint, test]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.ref_type == 'tag'
if: github.ref_type == 'tag'

environment:
name: UI (main)
Expand Down

0 comments on commit bc6a524

Please sign in to comment.