generated from siyuan-note/plugin-sample
-
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
Showing
3 changed files
with
57 additions
and
2 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,55 @@ | ||
name: Release Workflow | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '20' | ||
|
||
- name: Install Dependencies | ||
run: npm install -g pnpm && pnpm install && pnpm run build | ||
|
||
- name: Get Current Version | ||
id: version | ||
run: echo "::set-output name=version::$(node -p "require('./package.json').version")" | ||
|
||
- name: Check for Existing Release | ||
id: check_release | ||
run: | | ||
current_version="${{ steps.version.outputs.version }}" | ||
if git rev-parse -q --verify "refs/tags/v$current_version"; then | ||
echo "Release $current_version already exists. Nothing to do." | ||
exit 0 | ||
fi | ||
echo "No release found for version $current_version." | ||
- name: Create Release | ||
if: steps.check_release.outputs.result == 'failure' | ||
id: create_release | ||
run: | | ||
current_version="${{ steps.version.outputs.version }}" | ||
commit_message=$(git log -1 --pretty=%B) | ||
release_title="v$current_version" | ||
echo "Creating release $release_title" | ||
release_id=$(curl -s -X POST -H "Authorization: Bearer ${{ secrets.GH_TOKEN }}" -d "{\"tag_name\": \"$release_title\", \"name\": \"$release_title\", \"body\": \"$commit_message\"}" "https://api.github.com/repos/${{ github.repository }}/releases" | jq -r '.id') | ||
echo "::set-output name=release_id::$release_id" | ||
- name: Upload Release Binary | ||
if: steps.create_release.outputs.release_id | ||
run: | | ||
release_id="${{ steps.create_release.outputs.release_id }}" | ||
zip_path="${{ steps.zip_package.outputs.zip_path }}" | ||
echo "Uploading binary to release $release_id" | ||
curl -s -X POST -H "Authorization: Bearer ${{ secrets.GH_TOKEN }}" -H "Content-Type: application/zip" --data-binary "@$zip_path" "https://uploads.github.com/repos/${{ github.repository }}/releases/$release_id/assets?name=package.zip" |
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
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