Skip to content

Commit c5568dc

Browse files
committed
Use american spelling of artifact
Signed-off-by: Nico Burns <nico@nicoburns.com>
1 parent d749dd5 commit c5568dc

1 file changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/publish-browser.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -38,40 +38,40 @@ jobs:
3838
- target: x86_64-pc-windows-msvc
3939
os: windows-latest
4040
use_git_cli: true
41-
artefact_name: "Blitz_0.0.0_windows_x86_64"
42-
artefact_path: |
41+
artifact_name: "Blitz_0.0.0_windows_x86_64"
42+
artifact_path: |
4343
./target/dx/blitz/bundle/windows/bundle/msi/Blitz_0.0.0_x64_en-US.msi
4444
./target/dx/blitz/bundle/windows/bundle/nsis/Blitz_0.0.0_x64-setup.exe
4545
- target: aarch64-pc-windows-msvc
4646
os: windows-11-arm
4747
use_git_cli: true
48-
artefact_name: "Blitz_0.0.0_windows_aarch64"
49-
artefact_path: |
48+
artifact_name: "Blitz_0.0.0_windows_aarch64"
49+
artifact_path: |
5050
./target/dx/blitz/bundle/windows/bundle/msi/Blitz_0.0.0_arm64_en-US.msi
5151
./target/dx/blitz/bundle/windows/bundle/nsis/Blitz_0.0.0_arm64-setup.exe
5252
- target: x86_64-apple-darwin
5353
os: macos-15-intel
5454
use_git_cli: false
55-
artefact_name: "Blitz_0.0.0_macos_x86_64"
56-
artefact_path: "./target/dx/blitz/bundle/macos/bundle/dmg/Blitz_0.0.0_x64.dmg"
55+
artifact_name: "Blitz_0.0.0_macos_x86_64"
56+
artifact_path: "./target/dx/blitz/bundle/macos/bundle/dmg/Blitz_0.0.0_x64.dmg"
5757
- target: aarch64-apple-darwin
5858
os: macos-latest
5959
use_git_cli: false
60-
artefact_name: "Blitz_0.0.0_macos_aarch64"
61-
artefact_path: "./target/dx/blitz/bundle/macos/bundle/dmg/Blitz_0.0.0_aarch64.dmg"
60+
artifact_name: "Blitz_0.0.0_macos_aarch64"
61+
artifact_path: "./target/dx/blitz/bundle/macos/bundle/dmg/Blitz_0.0.0_aarch64.dmg"
6262
- target: x86_64-unknown-linux-gnu
6363
os: ubuntu-24.04
6464
use_git_cli: true
65-
artefact_name: "Blitz_0.0.0_linux_x86_64"
66-
artefact_path: |
65+
artifact_name: "Blitz_0.0.0_linux_x86_64"
66+
artifact_path: |
6767
./target/dx/blitz/bundle/linux/bundle/deb/Blitz_0.0.0_amd64.deb
6868
./target/dx/blitz/bundle/linux/bundle/rpm/Blitz-0.0.0-.x86_64.rpm
6969
./target/dx/blitz/bundle/linux/bundle/appimage/Blitz_0.0.0_amd64.AppImage
7070
- target: aarch64-unknown-linux-gnu
7171
os: ubuntu-24.04-arm
7272
use_git_cli: true
73-
artefact_name: "Blitz_0.0.0_linux_aarch64"
74-
artefact_path: |
73+
artifact_name: "Blitz_0.0.0_linux_aarch64"
74+
artifact_path: |
7575
./target/dx/blitz/bundle/linux/bundle/deb/Blitz_0.0.arm64.deb
7676
./target/dx/blitz/bundle/linux/bundle/rpm/Blitz-0.0.0-.aarch64.rpm
7777
./target/dx/blitz/bundle/linux/bundle/appimage/Blitz_0.0.0_aarch64.AppImage
@@ -128,10 +128,10 @@ jobs:
128128

129129
- name: Upload app bundle
130130
uses: actions/upload-artifact@v5
131-
if: ${{ matrix.platform.artefact_path != '' && matrix.platform.artefact_name != '' }}
131+
if: ${{ matrix.platform.artifact_path != '' && matrix.platform.artifact_name != '' }}
132132
with:
133-
name: ${{ matrix.platform.artefact_name }}
134-
path: ${{ matrix.platform.artefact_path }}
133+
name: ${{ matrix.platform.artifact_name }}
134+
path: ${{ matrix.platform.artifact_path }}
135135

136136
# # Todo: we want `cargo install dx` to actually just use a prebuilt binary instead of building it
137137
# - name: Build and upload CLI binaries

0 commit comments

Comments
 (0)