Skip to content

Commit 2643fc4

Browse files
committed
gh-workflow: Take over stuff from newest template
1 parent 5f7eb4c commit 2643fc4

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/run.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,32 @@ permissions:
1414

1515
concurrency:
1616
group: "pages"
17-
cancel-in-progress: true
17+
cancel-in-progress: false
1818

1919
jobs:
2020
build:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v3
23+
- name: Checkout
24+
uses: actions/checkout@v4
25+
26+
- name: Setup Pages
27+
uses: actions/configure-pages@v5
2428

2529
- name: Install tools
2630
run: source .devcontainer/setup.sh
2731

2832
- name: Build main website
2933
run: make -f docs/Makefile html
3034

31-
- name: Upload website to artifacts
35+
- name: Upload artifacts
3236
uses: actions/upload-pages-artifact@v3
3337
with:
3438
path: './out/docs/html'
3539

3640
deploy:
37-
needs: build
3841
runs-on: ubuntu-latest
42+
needs: build
3943
environment:
4044
name: github-pages
4145
url: ${{ steps.deployment.outputs.page_url }}

0 commit comments

Comments
 (0)