Skip to content

Commit

Permalink
feat: fix use auto relase action #3
Browse files Browse the repository at this point in the history
Signed-off-by: seven <[email protected]>
  • Loading branch information
Blankll committed Jan 14, 2024
1 parent 6f00fee commit 21262e7
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,23 @@ jobs:
- run: npm run build
- name: Build app
run: ./scripts/make-distributions.sh
- name: Upload artifacts
uses: actions/download-artifact@v4
with:
path: out/make/*
release:
- name: Release App
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
LICENSE
out/make/*
needs: pre-release
runs-on: ubuntu-latest
steps:
- name: Github checkout
uses: actions/checkout@v4
- name: Download artifacts
uses: actions/download-artifact@v4
- name: Release App
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
LICENSE
out/make/*

0 comments on commit 21262e7

Please sign in to comment.