Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 56b3796

Browse files
committed
Change release filename from x86 to x64
1 parent 06a88e6 commit 56b3796

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
echo "sha: ${{ env.SHA }}"
3737
echo "tag: ${{ env.TAG }}"
3838
39-
build-binaries-x86:
39+
build-binaries-x64:
4040
runs-on: ubuntu-latest
4141
# Use a container with GLIBC 2.17
4242
container: quay.io/pypa/manylinux2014_x86_64
@@ -57,7 +57,7 @@ jobs:
5757

5858
- uses: Swatinem/rust-cache@v1
5959
with:
60-
key: x86
60+
key: x64
6161

6262
- name: Compile
6363
uses: actions-rs/cargo@v1
@@ -71,14 +71,14 @@ jobs:
7171
- name: Prepare archive
7272
id: archive
7373
run: |
74-
export ARCHIVE_NAME=hq-${{ needs.set-env.outputs.tag }}-linux-x86.tar.gz
74+
export ARCHIVE_NAME=hq-${{ needs.set-env.outputs.tag }}-linux-x64.tar.gz
7575
tar -czvf $ARCHIVE_NAME -C target/release hq
7676
echo "::set-output name=archive-name::$ARCHIVE_NAME"
7777
7878
- name: Store archive
7979
uses: actions/upload-artifact@v2
8080
with:
81-
name: archive-x86
81+
name: archive-x64
8282
path: ${{ steps.archive.outputs.archive-name }}
8383

8484
build-binaries-powerpc:
@@ -121,7 +121,7 @@ jobs:
121121
path: ${{ steps.archive.outputs.archive-name }}
122122
create-release:
123123
runs-on: ubuntu-latest
124-
needs: [ set-env, build-binaries-x86, build-binaries-powerpc ]
124+
needs: [ set-env, build-binaries-x64, build-binaries-powerpc ]
125125
outputs:
126126
upload_url: ${{ steps.create-release.outputs.upload_url }}
127127
steps:
@@ -150,7 +150,7 @@ jobs:
150150
needs: [set-env, create-release]
151151
strategy:
152152
matrix:
153-
arch: [x86, powerpc64]
153+
arch: [x64, powerpc64]
154154
steps:
155155
- name: Download archive
156156
uses: actions/download-artifact@v2

0 commit comments

Comments
 (0)