docFiller Release #8
Workflow file for this run
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
name: docFiller Release | |
on: | |
push: | |
tags: | |
- "*" | |
permissions: | |
contents: write | |
jobs: | |
build: | |
name: Build and Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Zip Source Code | |
run: | | |
zip -r docFiller.zip . -x '*.git*' -x '*node_modules*' -x '*build*' -x '*coverage*' -x '*web-ext-artifacts*' | |
- name: Extract Version from Tag | |
run: | | |
VERSION=${GITHUB_REF#refs/tags/} | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Installation of Dependencies | |
run: | | |
bun install | |
- name: Package extension | |
run: | | |
bun run package:firefox | |
bun run package:chromium | |
- name: Assemble release notes | |
run: | | |
> release.body.txt | |
VERSION_PATTERN="## ${VERSION}" | |
START_LINE=$(grep -n "$VERSION_PATTERN" CHANGELOG.md | cut -d: -f1 || echo "") | |
if [ -n "$START_LINE" ]; then | |
NEXT_VERSION_LINE=$(($(tail -n +$((START_LINE+1)) CHANGELOG.md | grep -n "^## " | head -n1 | cut -d: -f1 || echo "") + START_LINE)) | |
if [ -n "$NEXT_VERSION_LINE" ]; then | |
sed -n "$START_LINE,$((NEXT_VERSION_LINE-1))p" CHANGELOG.md > release.body.txt | |
else | |
sed -n "$START_LINE,\$p" CHANGELOG.md > release.body.txt | |
fi | |
fi | |
- name: Create GitHub Release | |
id: create_release | |
uses: softprops/action-gh-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ env.VERSION }} | |
name: ${{ env.VERSION }} | |
draft: false | |
prerelease: false | |
body_path: release.body.txt | |
files: | | |
web-ext-artifacts/docfiller-*.zip | |
# - name: Read Approval Note | |
# run: | | |
# APPROVAL_NOTE=$(cat docs/FOR_ADDONS_REVIEWERS.md) | |
# echo "APPROVAL_NOTE=$APPROVAL_NOTE" >> $GITHUB_ENV | |
- uses: browser-actions/release-firefox-addon@latest | |
with: | |
addon-id: "docfiller" | |
addon-path: "web-ext-artifacts/docfiller-*-firefox.zip" | |
source-path: "docFiller.zip" | |
approval-note: "Available at https://github.com/rootCircle/docFiller/blob/dev/docs/FOR_ADDONS_REVIEWERS.md" | |
auth-api-issuer: ${{ secrets.AUTH_API_ISSUER }} | |
auth-api-secret: ${{ secrets.AUTH_API_SECRET }} | |
release-note: ${{ steps.create_release.outputs.body }} | |
- uses: browser-actions/release-chrome-extension@latest | |
with: | |
extension-id: "goibiampjlgcdjdfakjepniopldpijcd" | |
extension-path: "web-ext-artifacts/docfiller-*-chromium.zip" | |
oauth-client-id: ${{ secrets.OAUTH_CLIENT_ID }} | |
oauth-client-secret: ${{ secrets.OAUTH_CLIENT_SECRET }} | |
oauth-refresh-token: ${{ secrets.OAUTH_REFRESH_TOKEN }} |