We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8705084 commit a767084Copy full SHA for a767084
.github/workflows/ci.yml
@@ -2,6 +2,7 @@ name: Deploy
2
3
on:
4
push:
5
+ pull_request:
6
workflow_dispatch:
7
8
jobs:
@@ -16,4 +17,6 @@ jobs:
16
17
- run: mkdir ~/.ssh && echo "${{ secrets.DEPLOY_KEY }}" > ~/.ssh/id_rsa && chmod 400 ~/.ssh/id_rsa
18
- run: echo 'GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}"' > .env && cat .env.dist >> .env
19
- run: git config --global user.name "GitHub Actions" && git config --global user.email "[email protected]"
- - run: bin/build --deploy
20
+ - run: bin/build
21
+ - run: bin/build --deploy --no-component-update
22
+ if: ${{ github.ref == 'refs/heads/main' }}
0 commit comments