Skip to content

Commit

Permalink
revert name changes
Browse files Browse the repository at this point in the history
  • Loading branch information
DanEngelbrecht committed Mar 3, 2024
1 parent e85c6ae commit a80574f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 27 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/upload-artifact@v4
name: upload ${{matrix.target}}
with:
name: linux-x64-${{matrix.target}}-${{matrix.config}}
name: linux_x64-${{matrix.target}}-${{matrix.config}}
path: |
build/**
!build/**/*.o
Expand All @@ -38,8 +38,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
pattern: linux-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand All @@ -66,7 +64,7 @@ jobs:
- uses: actions/upload-artifact@v4
name: upload ${{matrix.target}}
with:
name: darwin-${{matrix.arch}}-${{matrix.target}}-${{matrix.config}}
name: darwin_${{matrix.arch}}-${{matrix.target}}-${{matrix.config}}
path: |
build/**
!build/**/*.o
Expand All @@ -83,8 +81,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
pattern: darwin-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand All @@ -111,7 +107,7 @@ jobs:
- uses: actions/upload-artifact@v4
name: upload ${{matrix.target}}
with:
name: win32-x64-${{matrix.target}}-${{matrix.config}}
name: win32_x64-${{matrix.target}}-${{matrix.config}}
path: |
build/**
!build/**/*.obj
Expand All @@ -126,8 +122,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
pattern: win32-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/master-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/upload-artifact@v4
name: upload ${{matrix.target}}
with:
name: linux-x64-${{matrix.target}}-${{matrix.config}}
name: linux_x64-${{matrix.target}}-${{matrix.config}}
path: |
build/**
!build/**/*.o
Expand Down Expand Up @@ -53,8 +53,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
pattern: linux-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand All @@ -81,7 +79,7 @@ jobs:
- uses: actions/upload-artifact@v4
name: upload ${{matrix.target}}
with:
name: darwin-${{matrix.arch}}-${{matrix.target}}-${{matrix.config}}
name: darwin_${{matrix.arch}}-${{matrix.target}}-${{matrix.config}}
path: |
build/**
!build/**/*.o
Expand Down Expand Up @@ -117,8 +115,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
pattern: darwin-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand All @@ -145,7 +141,7 @@ jobs:
- uses: actions/upload-artifact@v4
name: upload ${{matrix.target}}
with:
name: win32-x64-${{matrix.target}}-${{matrix.config}}
name: win32_x64-${{matrix.target}}-${{matrix.config}}
path: |
build/**
!build/**/*.obj
Expand Down Expand Up @@ -177,8 +173,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
pattern: win32-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: actions/upload-artifact@v4
name: upload ${{matrix.target}}
with:
name: linux-x64-${{matrix.target}}-${{matrix.config}}
name: linux_x64-${{matrix.target}}-${{matrix.config}}
path: |
build/**
!build/**/*.o
Expand Down Expand Up @@ -62,8 +62,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
pattern: linux-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down Expand Up @@ -91,7 +89,7 @@ jobs:
- uses: actions/upload-artifact@v4
name: upload ${{matrix.target}}
with:
name: darwin-${{matrix.arch}}-${{matrix.target}}-${{matrix.config}}
name: darwin_${{matrix.arch}}-${{matrix.target}}-${{matrix.config}}
path: |
build/**
!build/**/*.o
Expand Down Expand Up @@ -127,8 +125,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
pattern: darwin-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand All @@ -155,7 +151,7 @@ jobs:
- uses: actions/upload-artifact@v4
name: upload ${{matrix.target}}
with:
name: win32-x64-${{matrix.target}}-${{matrix.config}}
name: win32_x64-${{matrix.target}}-${{matrix.config}}
path: |
build/**
!build/**/*.obj
Expand Down Expand Up @@ -187,8 +183,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
pattern: win32-*
merge-multiple: true
path: build/artifacts
- name: build dist
run: |
Expand Down

0 comments on commit a80574f

Please sign in to comment.