Add self-hosted build asset deployment to GitHub releases in the CI action

This commit is contained in:
Keavon Chambers 2024-08-26 23:57:39 -07:00
parent 78337f9b8e
commit f2493d5308
1 changed files with 12 additions and 1 deletions

View File

@ -12,7 +12,7 @@ jobs:
build: build:
runs-on: self-hosted runs-on: self-hosted
permissions: permissions:
contents: read contents: write
deployments: write deployments: write
env: env:
RUSTC_WRAPPER: /usr/bin/sccache RUSTC_WRAPPER: /usr/bin/sccache
@ -66,3 +66,14 @@ jobs:
projectName: graphite-editor projectName: graphite-editor
directory: frontend/dist directory: frontend/dist
branch: master branch: master
- name: 📦 Upload assets to GitHub release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
DATE=$(git log -1 --format=%cd --date=format:%Y-%m-%d)
cd frontend
sed -i "s|$INDEX_HTML_HEAD_REPLACEMENT||" dist/index.html
mv dist "graphite-$DATE"
zip -r "graphite-self-hosted-build.zip" "graphite-$DATE"
gh release upload latest-stable "graphite-self-hosted-build.zip" --clobber