-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e76d60b
commit 15048fa
Showing
2 changed files
with
58 additions
and
42 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,58 @@ | ||
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' |
This file was deleted.
Oops, something went wrong.