mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
chore: fixing publish step
This commit is contained in:
parent
92a5068e7a
commit
fc1dfef7d0
3 changed files with 106 additions and 112 deletions
70
.github/workflows/publish.yml
vendored
70
.github/workflows/publish.yml
vendored
|
|
@ -1,70 +0,0 @@
|
|||
name: Release Obsidian plugin
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- "*"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "18.x"
|
||||
- name: Install packages
|
||||
run: npm install
|
||||
- name: Build plugin
|
||||
run: |
|
||||
npm run build
|
||||
- name: Extract release notes
|
||||
id: release-notes
|
||||
run: |
|
||||
tag="${GITHUB_REF#refs/tags/}"
|
||||
# Remove 'v' prefix if present for matching
|
||||
version="${tag#v}"
|
||||
|
||||
awk -v version="$version" '
|
||||
BEGIN { found=0; content="" }
|
||||
/^# [0-9]+\.[0-9]+\.[0-9]+/ {
|
||||
if (found) { exit }
|
||||
if ($2 ~ "^"version"($| \\()") { found=1; next }
|
||||
}
|
||||
found { content = content $0 "\n" }
|
||||
END { printf "%s", content }
|
||||
' CHANGELOG.md > release_notes.txt
|
||||
|
||||
echo "NOTES<<EOF" >> $GITHUB_OUTPUT
|
||||
cat release_notes.txt >> $GITHUB_OUTPUT
|
||||
echo "EOF" >> $GITHUB_OUTPUT
|
||||
- name: Create release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
tag="${GITHUB_REF#refs/tags/}"
|
||||
|
||||
gh release create "$tag" \
|
||||
--title="$tag" \
|
||||
--notes="${{ steps.release-notes.outputs.NOTES }}" \
|
||||
main.js manifest.json styles.css
|
||||
|
||||
echo "RELEASE_URL=$(gh release view $tag --json url -q .url)" >> $GITHUB_OUTPUT
|
||||
- name: Send Discord notification
|
||||
if: success() && github.event_name != 'pull_request'
|
||||
env:
|
||||
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
||||
run: |
|
||||
tag="${GITHUB_REF#refs/tags/}"
|
||||
|
||||
MESSAGE="🎉 New release $tag is now available!\n\n"
|
||||
MESSAGE+="📝 Changes:\n"
|
||||
MESSAGE+="${{ steps.release-notes.outputs.NOTES }}\n"
|
||||
MESSAGE+="\n🔗 Release: ${{ steps.create-release.outputs.RELEASE_URL }}"
|
||||
|
||||
curl -H "Content-Type: application/json" \
|
||||
-d "{\"content\": \"$MESSAGE\"}" \
|
||||
$DISCORD_WEBHOOK
|
||||
106
.github/workflows/tag-and-publish.yml
vendored
Normal file
106
.github/workflows/tag-and-publish.yml
vendored
Normal file
|
|
@ -0,0 +1,106 @@
|
|||
name: Check Version and Release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'package.json'
|
||||
|
||||
jobs:
|
||||
check-and-release:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: "18.x"
|
||||
|
||||
- name: Get package version
|
||||
id: package-version
|
||||
run: |
|
||||
VERSION=$(node -p "require('./package.json').version")
|
||||
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Check if tag exists
|
||||
id: check-tag
|
||||
run: |
|
||||
if git rev-parse "${{ steps.package-version.outputs.VERSION }}" >/dev/null 2>&1; then
|
||||
echo "EXISTS=true" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "EXISTS=false" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: Install packages
|
||||
if: steps.check-tag.outputs.EXISTS == 'false'
|
||||
run: npm install
|
||||
|
||||
- name: Build plugin
|
||||
if: steps.check-tag.outputs.EXISTS == 'false'
|
||||
run: |
|
||||
npm run build
|
||||
|
||||
- name: Extract release notes
|
||||
if: steps.check-tag.outputs.EXISTS == 'false'
|
||||
id: release-notes
|
||||
run: |
|
||||
version="${{ steps.package-version.outputs.VERSION }}"
|
||||
|
||||
# Use awk to extract the section for the current version
|
||||
awk -v version="$version" '
|
||||
BEGIN { found=0; content="" }
|
||||
/^# [0-9]+\.[0-9]+\.[0-9]+/ {
|
||||
if (found) { exit }
|
||||
if ($2 ~ "^"version"($| \\()") { found=1; next }
|
||||
}
|
||||
found { content = content $0 "\n" }
|
||||
END { printf "%s", content }
|
||||
' CHANGELOG.md > release_notes.txt
|
||||
|
||||
# Escape multiline output for GitHub Actions
|
||||
echo "NOTES<<EOF" >> $GITHUB_OUTPUT
|
||||
cat release_notes.txt >> $GITHUB_OUTPUT
|
||||
echo "EOF" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Create tag and release
|
||||
if: steps.check-tag.outputs.EXISTS == 'false'
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: |
|
||||
# Create and push tag
|
||||
git config user.name "GitHub Actions"
|
||||
git config user.email "actions@github.com"
|
||||
git tag -a "${{ steps.package-version.outputs.VERSION }}" -m "Release version ${{ steps.package-version.outputs.VERSION }}"
|
||||
git push origin "${{ steps.package-version.outputs.VERSION }}"
|
||||
|
||||
# Create release
|
||||
gh release create "${{ steps.package-version.outputs.VERSION }}" \
|
||||
--title="${{ steps.package-version.outputs.VERSION }}" \
|
||||
--notes="${{ steps.release-notes.outputs.NOTES }}" \
|
||||
main.js manifest.json styles.css
|
||||
|
||||
- name: Send Discord notification
|
||||
if: steps.check-tag.outputs.EXISTS == 'false' && success()
|
||||
env:
|
||||
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
||||
run: |
|
||||
# Get release URL using gh cli
|
||||
RELEASE_URL=$(gh release view "${{ steps.package-version.outputs.VERSION }}" --json url -q .url)
|
||||
|
||||
# Prepare the message content
|
||||
MESSAGE="🎉 New release ${{ steps.package-version.outputs.VERSION }} is now available!\n\n"
|
||||
MESSAGE+="📝 Changes:\n"
|
||||
MESSAGE+="${{ steps.release-notes.outputs.NOTES }}\n"
|
||||
MESSAGE+="\n🔗 Release: $RELEASE_URL"
|
||||
|
||||
# Send to Discord using curl
|
||||
curl -H "Content-Type: application/json" \
|
||||
-d "{\"content\": \"$MESSAGE\"}" \
|
||||
$DISCORD_WEBHOOK
|
||||
42
.github/workflows/tag.yml
vendored
42
.github/workflows/tag.yml
vendored
|
|
@ -1,42 +0,0 @@
|
|||
name: Auto Tag on Version Change
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'package.json'
|
||||
|
||||
jobs:
|
||||
check-and-tag:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Get package version
|
||||
id: package-version
|
||||
run: |
|
||||
VERSION=$(node -p "require('./package.json').version")
|
||||
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
|
||||
|
||||
- name: Check if tag exists
|
||||
id: check-tag
|
||||
run: |
|
||||
if git rev-parse "${{ steps.package-version.outputs.VERSION }}" >/dev/null 2>&1; then
|
||||
echo "EXISTS=true" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "EXISTS=false" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: Create and push tag
|
||||
if: steps.check-tag.outputs.EXISTS == 'false'
|
||||
run: |
|
||||
git config user.name "GitHub Actions"
|
||||
git config user.email "actions@github.com"
|
||||
git tag -a "${{ steps.package-version.outputs.VERSION }}" -m "Release version ${{ steps.package-version.outputs.VERSION }}"
|
||||
git push origin "${{ steps.package-version.outputs.VERSION }}"
|
||||
Loading…
Reference in a new issue