Skip to content

Commit

Permalink
build(github): add release-action
Browse files Browse the repository at this point in the history
  • Loading branch information
jfishe committed Nov 16, 2024
1 parent 37045b0 commit f2d9489
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,24 @@ on:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
- name: Archive Release Zip
uses: thedoctor0/zip-release@0.7.5
uses: thedoctor0/zip-release@0.7.6
with:
type: 'zip'
filename: 'release.zip'
path: 'ctags.d'
- name: Archive Release Tar
uses: thedoctor0/zip-release@0.7.5
uses: thedoctor0/zip-release@0.7.6
with:
type: 'tar'
filename: 'release.tar'
filename: 'release.tar.gz'
path: 'ctags.d'
- name: Upload Release
uses: ncipollo/release-action@v1
with:
artifacts: "release.zip,release.tar.gz"
# token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f2d9489

Please sign in to comment.