103 lines
4.2 KiB
YAML
103 lines
4.2 KiB
YAML
name: Release and Deploy Build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
env:
|
|
VERSION_MAJOR: '1'
|
|
VERSION_MINOR: '1'
|
|
VERSION_PATCH: ${{ gitea.run_number }}
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-tags: true
|
|
|
|
- name: Use NodeJS v22.22.3
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: '22.22.3'
|
|
registry-url: 'https://registry.npmjs.org'
|
|
package-manager-cache: false
|
|
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
|
|
- name: Set Release Version
|
|
id: version
|
|
run: npm run version:place
|
|
|
|
- name: Export Release Version
|
|
id: release_version
|
|
run: |
|
|
package_version="$(node -p "require('./package.json').version")"
|
|
echo "tag=${package_version}" >> "$GITEA_OUTPUT"
|
|
|
|
- name: Run Build
|
|
run: npm run build
|
|
|
|
- name: Publish Library
|
|
run: npm publish --access public
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Create Gitea release
|
|
env:
|
|
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
|
GITEA_API_URL: ${{ gitea.api_url }}
|
|
GITEA_REPOSITORY: ${{ gitea.repository }}
|
|
GITEA_SERVER_URL: ${{ gitea.server_url }}
|
|
GITEA_SHA: ${{ gitea.sha }}
|
|
RELEASE_TAG: v${{ steps.release_version.outputs.tag }}
|
|
run: |
|
|
git fetch --force --tags
|
|
|
|
releases_url="${GITEA_API_URL}/repos/${GITEA_REPOSITORY}/releases"
|
|
previous_tag="$(curl --fail --silent --show-error --header "Authorization: token ${GITEA_TOKEN}" "${releases_url}?limit=50" | jq -r --arg tag "$RELEASE_TAG" '[.[] | select(.draft == false and .tag_name != $tag)][0].tag_name // empty')"
|
|
|
|
if [ -n "$previous_tag" ]; then
|
|
if git rev-parse --verify --quiet "${previous_tag}^{commit}" >/dev/null; then
|
|
commit_messages="$(git log --reverse --format='- %s' "${previous_tag}..${GITEA_SHA}")"
|
|
else
|
|
commit_messages="$(git log --reverse --format='- %s' "${GITEA_SHA}")"
|
|
fi
|
|
full_changelog="${GITEA_SERVER_URL}/${GITEA_REPOSITORY}/compare/${previous_tag}...${RELEASE_TAG}"
|
|
else
|
|
commit_messages="$(git log --reverse --format='- %s' "${GITEA_SHA}")"
|
|
full_changelog=""
|
|
fi
|
|
|
|
if [ -z "$commit_messages" ]; then
|
|
commit_messages='- No commits since the previous release'
|
|
fi
|
|
|
|
{
|
|
echo '## Changes'
|
|
echo
|
|
printf '%s\n' "$commit_messages"
|
|
echo
|
|
if [ -n "$full_changelog" ]; then
|
|
echo "**Full Changelog**: ${full_changelog}"
|
|
fi
|
|
} > release-notes.md
|
|
|
|
jq -n --arg tag "$RELEASE_TAG" --arg target "$GITEA_SHA" --rawfile body release-notes.md \
|
|
'{tag_name: $tag, target_commitish: $target, name: $tag, body: $body, draft: false, prerelease: false}' > release.json
|
|
|
|
release_id="$(curl --silent --header "Authorization: token ${GITEA_TOKEN}" "${releases_url}/tags/${RELEASE_TAG}" | jq -r '.id // empty')"
|
|
|
|
if [ -n "$release_id" ]; then
|
|
curl --fail-with-body --request PATCH --header "Authorization: token ${GITEA_TOKEN}" --header 'Content-Type: application/json' --data @release.json "${releases_url}/${release_id}"
|
|
else
|
|
curl --fail-with-body --request POST --header "Authorization: token ${GITEA_TOKEN}" --header 'Content-Type: application/json' --data @release.json "$releases_url"
|
|
fi
|