Skip to content

Commit

Permalink
Release archive
Browse files Browse the repository at this point in the history
  • Loading branch information
pgarrison committed Dec 31, 2023
1 parent 4dcd541 commit aa12f5d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,23 @@ jobs:
uses: borales/actions-yarn@v4
with:
cmd: build
- name: Create release folder
run: mkdir -p dist/release
- name: Make zip
uses: thedoctor0/[email protected]
with:
type: zip
directory: dist
exclusions: release
filename: release/time-card-extension.zip
- name: Make tar
uses: thedoctor0/[email protected]
with:
type: tar
directory: dist
exclusions: release
filename: release/time-card-extension.tar.gz
- name: Release
uses: softprops/action-gh-release@v1
with:
files: dist/*
files: dist/release/time-card-extension.*
7 changes: 7 additions & 0 deletions update-v0.1.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh
git add .
git commit --amend
git tag -d v0.1.0
git push -f
git tag -a -m "v0.1.0" v0.1.0
git push -f --tags

0 comments on commit aa12f5d

Please sign in to comment.