Add auto build/release CI [deploy] #1
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
name: Build and Release Plugin | |
on: | |
push: | |
tags: | |
- 'v*' | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
PLUGIN_NAME: "EpubJSReader" | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get tag name | |
if: startswith( github.ref, 'refs/tags/') | |
id: get_tag_name | |
run: | | |
echo ::set-output name=TAGNAME::${GITHUB_REF/refs\/tags\//} | |
echo "GITHUB_TAGNAME=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Build Plugin | |
run: python ./buildplugin | |
- name: Upload Artifact | |
if: "contains(github.event.head_commit.message, '[deploy]')" | |
uses: actions/upload-artifact@v4 | |
with: | |
name: unzip_me | |
path: ./*.zip | |
retention-days: 3 | |
- name: Create Release | |
if: startswith( github.ref, 'refs/tags/') | |
uses: ncipollo/release-action@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
name: $PLUGIN_NAME ${{ steps.get_tag_name.outputs.TAGNAME }} Released | |
body: | | |
Changes in this Release | |
- First Change | |
- Second Change | |
draft: true | |
prerelease: false | |
artifacts: './*.zip' |