mirror of
https://github.com/MercuryWorkshop/scramjet.git
synced 2025-05-16 07:30:02 -04:00
split pages deploy into a different ci job
This commit is contained in:
parent
d2c2d6e75f
commit
51818d1aa8
1 changed files with 37 additions and 15 deletions
52
.github/workflows/main.yml
vendored
52
.github/workflows/main.yml
vendored
|
@ -1,9 +1,6 @@
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
on:
|
on: [push, pull_request, workflow_dispatch]
|
||||||
push:
|
|
||||||
branches: ["main"]
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
@ -48,21 +45,11 @@ jobs:
|
||||||
path: |
|
path: |
|
||||||
dist/*.js
|
dist/*.js
|
||||||
dist/*.js.map
|
dist/*.js.map
|
||||||
- name: build statics
|
|
||||||
run: bash buildstatic.sh
|
|
||||||
- name: upload pages artifact
|
|
||||||
uses: actions/upload-pages-artifact@v3
|
|
||||||
with:
|
|
||||||
path: "./staticbuild"
|
|
||||||
- name: deploy to github
|
|
||||||
id: deployment
|
|
||||||
uses: actions/deploy-pages@v4
|
|
||||||
|
|
||||||
upload:
|
upload:
|
||||||
name: Upload release
|
name: Upload Release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: build
|
||||||
permissions: write-all
|
|
||||||
if: github.ref == 'refs/heads/main'
|
if: github.ref == 'refs/heads/main'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -94,3 +81,38 @@ jobs:
|
||||||
body: "${{ github.event.head_commit.url }} ${{ github.event.head_commit.message }}"
|
body: "${{ github.event.head_commit.url }} ${{ github.event.head_commit.message }}"
|
||||||
artifacts: "scramjet.zip"
|
artifacts: "scramjet.zip"
|
||||||
prerelease: true
|
prerelease: true
|
||||||
|
|
||||||
|
pages:
|
||||||
|
name: Upload to Github Pages
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: build
|
||||||
|
if: github.ref == 'refs/heads/main'
|
||||||
|
steps:
|
||||||
|
- name: Setup Node.js
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: "22"
|
||||||
|
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm install --dev
|
||||||
|
|
||||||
|
- name: Get artifacts
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: scramjet
|
||||||
|
path: dist
|
||||||
|
|
||||||
|
- name: build statics
|
||||||
|
run: bash buildstatic.sh
|
||||||
|
|
||||||
|
- name: upload pages artifact
|
||||||
|
uses: actions/upload-pages-artifact@v3
|
||||||
|
with:
|
||||||
|
path: "./staticbuild"
|
||||||
|
|
||||||
|
- name: deploy to github
|
||||||
|
id: deployment
|
||||||
|
uses: actions/deploy-pages@v4
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue