Skip to content

Commit

Permalink
fix: plop
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilb committed Sep 24, 2024
1 parent 2d29c45 commit eb1cdb9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- run: git config --global core.autocrlf false

- name: Checkout git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup & Build
uses: ./actions/setup_and_build
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
if: ${{ env.SHOULD_PUBLISH == 'false' }}
uses: ./actions/upload_prod_artefacts
with:
upload_prefix: ${{ runner.os }}-${{ runner.arch }}-${{ matrix.pkg_to_build }}-others
upload_prefix: ${{ runner.os }}-${{ runner.arch }}-${{ matrix.pkg_to_build }}

- name: Build & publish ${{ matrix.pkg_to_build }}
# we want this to run only when on "push" to "master"
Expand All @@ -86,7 +86,7 @@ jobs:
- run: git config --global core.autocrlf false

- name: Checkout git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup & Build
uses: ./actions/setup_and_build
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- run: git config --global core.autocrlf false

- name: Checkout git repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup & Build
uses: ./actions/setup_and_build
Expand Down
4 changes: 2 additions & 2 deletions actions/setup_and_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ runs:
using: 'composite'
steps:
- name: Install node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'

Expand Down

0 comments on commit eb1cdb9

Please sign in to comment.