Skip to content

Commit

Permalink
CI: Updated github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
malloch committed Feb 29, 2024
1 parent 50a52bc commit 4c58e1f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
Linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -17,7 +17,7 @@ jobs:
- name: build standalone
run:
pyinstaller webmapper.spec
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: webmapper-ubuntu-standalone
path: dist/webmapper
Expand All @@ -28,7 +28,7 @@ jobs:
CC: clang
CXX: clang++
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -39,15 +39,15 @@ jobs:
- name: build standalone
run:
pyinstaller webmapper.spec
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: webmapper-macosx-standalone
path: dist/webmapper

Windows-Latest:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: install dependencies
Expand All @@ -58,7 +58,7 @@ jobs:
- name: build standalone
run:
pyinstaller webmapper.spec
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: webmapper-win64-standalone
path: dist/webmapper

0 comments on commit 4c58e1f

Please sign in to comment.