Skip to content

Commit

Permalink
Create plugin release on tag (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
HMKnapp authored Jul 29, 2021
1 parent b91cf7e commit a247234
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 qentaceecheckoutpage.zip qentaceecheckoutpage
- 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: ./qentaceecheckoutpage.zip
asset_name: qentaceecheckoutpage.zip
asset_content_type: application/zip

0 comments on commit a247234

Please sign in to comment.