Skip to content

Commit

Permalink
fix: working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKreil committed Mar 13, 2024
1 parent c8bd891 commit 18f9416
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,12 @@ jobs:
run: npm run build

- name: Tar and compress
run: cd dist; tar -cf - *.js *.map *.ts | gzip -9 > maplibre-gl-versatiles-styler.tar.gz
run: tar -cf - *.js *.map *.ts | gzip -9 > maplibre-gl-versatiles-styler.tar.gz
working-directory: dist

- name: Upload file to release
run: gh release upload $RELEASE_TAG dist/*.gz --clobber
working-directory: release
run: gh release upload $RELEASE_TAG *.gz --clobber
working-directory: dist

- name: Update release
run: gh release edit $RELEASE_TAG --draft=false --latest --prerelease=false

0 comments on commit 18f9416

Please sign in to comment.