diff options
author | Ayke van Laethem <[email protected]> | 2023-06-12 00:07:53 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2023-06-16 21:32:22 +0200 |
commit | 785eb93b62aedf1bc2fbcaf3c9f36838117d9842 (patch) | |
tree | 57d462fe64607a7713c35a2d9457a7af0c33c02d /.github | |
parent | e041a8ed882c282b8ff76d8ce8d94838ba053f3f (diff) | |
download | tinygo-785eb93b62aedf1bc2fbcaf3c9f36838117d9842.tar.gz tinygo-785eb93b62aedf1bc2fbcaf3c9f36838117d9842.zip |
ci: rename release-double-zipped to something more useful
The Linux artifacts have clear names (linux-amd64-double-zipped etc),
but the MacOS and Windows ones didn't. This patch renames these artifact
names to be more readable, especially when downloading the artifacts.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-macos.yml | 2 | ||||
-rw-r--r-- | .github/workflows/windows.yml | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 3151ac563..51c145f33 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -108,7 +108,7 @@ jobs: # We're doing the former here, to keep artifact uploads fast. uses: actions/upload-artifact@v2 with: - name: release-double-zipped + name: darwin-amd64-double-zipped path: build/tinygo.darwin-amd64.tar.gz - name: Smoke tests shell: bash diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index fd46e8d87..55e752d70 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -118,7 +118,7 @@ jobs: # We're doing the former here, to keep artifact uploads fast. uses: actions/upload-artifact@v3 with: - name: release-double-zipped + name: windows-amd64-double-zipped path: build/release/release.zip smoke-test-windows: @@ -148,7 +148,7 @@ jobs: - name: Download TinyGo build uses: actions/download-artifact@v2 with: - name: release-double-zipped + name: windows-amd64-double-zipped path: build/ - name: Unzip TinyGo build shell: bash @@ -178,7 +178,7 @@ jobs: - name: Download TinyGo build uses: actions/download-artifact@v2 with: - name: release-double-zipped + name: windows-amd64-double-zipped path: build/ - name: Unzip TinyGo build shell: bash @@ -214,7 +214,7 @@ jobs: - name: Download TinyGo build uses: actions/download-artifact@v2 with: - name: release-double-zipped + name: windows-amd64-double-zipped path: build/ - name: Unzip TinyGo build shell: bash |