Skip to content

Commit

Permalink
add integration for All-in-one
Browse files Browse the repository at this point in the history
  • Loading branch information
axherrm committed Feb 24, 2024
1 parent cffa546 commit 014d9c2
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,25 @@ jobs:
- name: Commit updated submodule
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Release ${{ github.event.client_payload.version }}
commit_message: Update core to ${{ github.event.client_payload.version }}
token: ${{ secrets.PAT }}

- uses: actions/setup-node@v4
with:
# Version Spec of the version to use in SemVer notation.
# It also emits such aliases as lts, latest, nightly and canary builds
# Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node
node-version: 20
- name: Build All-in-one HTML
run: |
cd core
npm install
npm run build-single-file
cd single-dist
mv index.html CV.html
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.event.client_payload.version }}
files: CV.html

0 comments on commit 014d9c2

Please sign in to comment.