-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a workflow to automatically create a relase on tag.
- Triggered on x.y (or x.y-foo) tags - Zip and Tar archive are build and automatically added to the release. - Release is created as draft. User still have manually to publish on Github UI.
- Loading branch information
1 parent
75e3687
commit a82aab8
Showing
1 changed file
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: On-Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+' | ||
- 'v[0-9]+.[0-9]+-[0-9a-zA-Z]+' | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
create-release: | ||
name: create-release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Get release version from tag | ||
if: env.VERSION == '' | ||
run: | | ||
# Get the version without the `v` prefix | ||
tag=${{ github.ref_name }} | ||
echo "VERSION=${tag:1}" >> $GITHUB_ENV | ||
- name: Show the version | ||
run: | | ||
echo "Version is: $VERSION" | ||
- name: Create Github release | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
gh release create v$VERSION --draft --verify-tag --title v$VERSION | ||
outputs: | ||
version: ${{ env.VERSION }} | ||
|
||
create-archive: | ||
name: create-archive | ||
needs: ['create-release'] | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
format: [zip, tar.gz] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Create archive | ||
shell: bash | ||
env: | ||
format: ${{ matrix.format }} | ||
run: | | ||
version="${{ needs.create-release.outputs.version }}" | ||
archive_name="zim-testing-suite-${version}" | ||
git archive --prefix="${archive_name}/" --output ${archive_name}.${{ env.format }} v${version}:data/ | ||
- name: Upload archive | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
format: ${{ matrix.format }} | ||
run: | | ||
version="${{ needs.create-release.outputs.version }}" | ||
archive="zim-testing-suite-${version}.${{ env.format }}" | ||
gh release upload "v$version" $archive |