Skip to content

Commit

Permalink
Add CI release packaging on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
HMKnapp committed Jul 26, 2021
1 parent d22f663 commit 4ec322d
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
on:
push:
tags:
- '[0-9].[0-9]*'

name: Create Release

jobs:
build:
name: Release
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Pack release zip
run: |
zip -r qentacheckoutseamless.zip qentacheckoutseamless
- name: Get the tag name
id: get_tag
run: echo ::set-output name=TAG::${GITHUB_REF/refs\/tags\//}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./qentacheckoutseamless.zip
asset_name: qentacheckoutseamless.zip
asset_content_type: application/zip

0 comments on commit 4ec322d

Please sign in to comment.