Skip to content

Commit

Permalink
ci: add "Upload release artifacts" job
Browse files Browse the repository at this point in the history
  • Loading branch information
zavoloklom committed Sep 14, 2024
1 parent 275e8d8 commit 2c12132
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,15 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release

- name: Upload release artifacts
uses: actions/upload-artifact@v3
with:
name: release-artifacts
path: |
./package.json
./package-lock.json
./CHANGELOG.md
docker:
runs-on: ubuntu-latest
needs: release
Expand All @@ -82,6 +91,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Download release artifacts
uses: actions/download-artifact@v3
with:
name: release-artifacts

- name: Get build arguments
id: vars
run: |
Expand Down

0 comments on commit 2c12132

Please sign in to comment.