Skip to content

Commit

Permalink
build.yml: set pre-release job dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mschweiger committed Nov 6, 2022
1 parent 465ddf8 commit 06cc968
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,19 +97,24 @@ jobs:

pre-release:
name: Push pre-release package

needs: build

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: actions/download-artifact@v3
- name: Create directories
run: mkdir out

- name: Download artifacts
uses: actions/checkout@v2
uses: actions/download-artifact@v3
with:
path: ${{ github.workspace }}/out
path: ./out

- name: Show downloaded files
run: ls -R
working-directory: ${{ github.workspace }}/out
working-directory: ./out

# - name: Pre-release
# if: ${{ github.ref == 'refs/heads/main' }}
Expand Down

0 comments on commit 06cc968

Please sign in to comment.