Skip to content

Commit bfc4fce

Browse files
authored
fix: require build step before starting release (#100)
1 parent 099e336 commit bfc4fce

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,18 @@ jobs:
3131
- name: Archive build artifacts
3232
run: |
3333
cd public
34-
zip -r ../redact-check-build.zip .
34+
zip -r ../website-build.zip .
3535
cd ..
3636
3737
- name: Upload build artifact
3838
uses: actions/upload-artifact@v4
3939
with:
4040
name: build-artifacts
41-
path: redact-check-build.zip
41+
path: website-build.zip
4242

4343
release:
4444
runs-on: ubuntu-latest
45+
needs: build
4546
steps:
4647
- name: Checkout
4748
uses: actions/checkout@v4

0 commit comments

Comments
 (0)