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 88f8fba commit 6a3571c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/on-core-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,23 @@ jobs:
with:
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 6a3571c

Please sign in to comment.