Skip to content

Commit

Permalink
fix(ci)
Browse files Browse the repository at this point in the history
Signed-off-by: Simon A. F. Lund <[email protected]>
  • Loading branch information
safl committed Nov 20, 2024
1 parent 17c6e20 commit 1ae6fee
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: System, tools
run: |
./auxi/pkgs/${{ matrix.os.name }}.sh
sudo ./auxi/pkgs/${{ matrix.os.name }}.sh
- name: Yace, install
run: |
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,18 @@ concurrency:
jobs:
# Single deploy job since we're just deploying
deploy:
runs-on: '${{ matrix.os.name }}-${{ matrix.os.version }}'
strategy:
fail-fast: false
matrix:
os:
- {name: ubuntu, version: latest}
python-version: ['3.13']

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -36,7 +44,7 @@ jobs:

- name: System, tools
run: |
./auxi/pkgs/${{ matrix.os.name }}.sh
sudo ./auxi/pkgs/${{ matrix.os.name }}.sh
- name: Yace, Build and install
run: make all
Expand Down

0 comments on commit 1ae6fee

Please sign in to comment.