Skip to content

Commit

Permalink
attempt to fix workflow failures
Browse files Browse the repository at this point in the history
GitHub has deprecated the v2 version of the upload-artifact action: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/

I didn't actually read the release notes, I'm just YOLOing into v4 and
hoping that works. If it still fails, I'll investigate more.
  • Loading branch information
cldellow committed Sep 13, 2024
1 parent eab08d1 commit 1beb53a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
${{ github.workspace }}\build\RelWithDebInfo\tilemaker.exe ${{ env.AREA }}.osm.pbf --config=resources/config-openmaptiles.json --process=resources/process-openmaptiles.lua --output=${{ env.AREA }}.mbtiles --store osm_store --verbose
- name: 'Upload compiled executable'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: tilemaker-windows
path: |
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
${{ github.workspace }}/build/${{ matrix.executable }} ${{ env.AREA }}.osm.pbf --config=resources/config-openmaptiles.json --process=resources/process-openmaptiles.lua --output=${{ env.AREA }}.mbtiles --verbose --store /tmp/store
- name: 'Upload compiled executable'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: tilemaker-${{ matrix.os }}
path: |
Expand Down

0 comments on commit 1beb53a

Please sign in to comment.