We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3495960 commit 9821368Copy full SHA for 9821368
1 file changed
.github/workflows/ci-cd.yml
@@ -45,7 +45,7 @@ jobs:
45
run: BUILD_BRANCH=$(echo "${GITHUB_REF#refs/heads/}") BUILD_COMMIT=${{ github.sha }} npm run build
46
47
- name: Store assets
48
- if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/build_update' || github.ref == 'refs/heads/master') }}
+ if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/development' || github.ref == 'refs/heads/master') }}
49
uses: actions/upload-artifact@v3
50
with:
51
name: assets
@@ -56,7 +56,7 @@ jobs:
56
name: Upload assets
57
runs-on: ubuntu-latest
58
needs: build
59
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/build_update' }}
+ if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/development' }}
60
strategy:
61
matrix:
62
environment:
0 commit comments