Skip to content

Commit

Permalink
IMPROVE: remove release artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
ommyjay committed Mar 31, 2022
1 parent 927905a commit aee00fb
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,17 @@ name: Releases
on:
push:
tags:
- '*'
- '*'

jobs:

build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v2
- name: Switch to Dist Folder
run: |
cd dist
ls -la
zip -r release.zip .
- uses: ncipollo/release-action@v1
with:
artifacts: 'dist/release.zip'
token: ${{ secrets.GB_TOKEN }}
- uses: actions/checkout@v2
- uses: ncipollo/release-action@v1
with:
artifacts: "dist/*"
token: ${{ secrets.GB_TOKEN }}

0 comments on commit aee00fb

Please sign in to comment.