-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (41 loc) · 998 Bytes
/
autopublish.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Auto-Publish
on:
push:
branches:
- main
workflow_dispatch:
jobs:
tests-artifacts:
uses: ./.github/workflows/artifacts.yaml
build:
name: Build and Validate
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Create Release folders
run: |
chmod +x .github/scripts/checkout-tags.sh
./.github/scripts/checkout-tags.sh
- name: Redirect top to head
run: cp .github/scripts/index.html .
- uses: actions/upload-pages-artifact@v3
with:
path: .
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4