open-webui/.github/workflows/build-release.yml

60 lines
1.7 KiB
YAML
Raw Normal View History

2024-02-21 23:46:33 +00:00
name: Release
on:
push:
branches:
- main # or whatever branch you want to use
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
2024-02-22 17:06:20 +00:00
- name: Check for changes in package.json
2024-02-21 23:46:33 +00:00
run: |
2024-02-22 17:06:20 +00:00
git diff --cached --diff-filter=d package.json || {
echo "No changes to package.json"
exit 1
}
2024-02-22 17:06:20 +00:00
- name: Get version number from package.json
id: get_version
run: |
VERSION=$(jq -r '.version' package.json)
echo "::set-output name=version::$VERSION"
2024-02-21 23:46:33 +00:00
- name: Extract latest CHANGELOG entry
id: changelog
run: |
CHANGELOG_CONTENT=$(awk '/^## \[/{n++} n==1' CHANGELOG.md)
echo "CHANGELOG_CONTENT<<EOF"
echo "$CHANGELOG_CONTENT"
echo "EOF"
echo "::set-output name=content::${CHANGELOG_CONTENT}"
2024-02-21 23:46:33 +00:00
- name: Create GitHub release
uses: actions/github-script@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const changelog = `${{ steps.changelog.outputs.content }}`;
2024-02-21 23:46:33 +00:00
const release = await github.rest.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
2024-02-22 17:06:20 +00:00
tag_name: `v${{ steps.get_version.outputs.version }}`,
name: `v${{ steps.get_version.outputs.version }}`,
body: changelog,
2024-02-21 23:46:33 +00:00
})
console.log(`Created release ${release.data.html_url}`)
- name: Upload package to GitHub release
uses: actions/upload-artifact@v3
with:
name: package
path: .
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}