-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub workflow for creating releases on updates to the "release"…
… branch
- Loading branch information
Showing
1 changed file
with
59 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,59 @@ | ||
name: Create Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- release | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js environment | ||
uses: actions/[email protected] | ||
|
||
- name: Get release version | ||
run: echo "RELEASE_VERSION=$(./bump_version.sh -p)" >> $GITHUB_ENV | ||
|
||
- name: Create release directory | ||
run: mkdir release-dir | ||
|
||
- name: Copy files to release directory | ||
run: | | ||
while IFS= read -r file; do | ||
cp --parents "$file" release-dir/ | ||
done < release-files | ||
- name: Zip the release | ||
run: zip -r WebCalendar-${{ env.RELEASE_VERSION }}.zip release-dir/ | ||
|
||
- name: Create GitHub Release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: v${{ env.RELEASE_VERSION }} | ||
release_name: WebCalendar v${{ env.RELEASE_VERSION }} | ||
body: Release of WebCalendar v${{ env.RELEASE_VERSION }} | ||
draft: false | ||
prerelease: false | ||
|
||
- name: Upload Release Asset | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./WebCalendar-${{ env.RELEASE_VERSION }}.zip | ||
asset_name: WebCalendar-${{ env.RELEASE_VERSION }}.zip | ||
asset_content_type: application/zip | ||
|
||
- name: Tag the Release Branch | ||
run: | | ||
git tag v${{ env.RELEASE_VERSION }} | ||
git push origin v${{ env.RELEASE_VERSION }} | ||