Skip to content

Commit

Permalink
ci: fix sealos cli in cloud release ci. (#4338)
Browse files Browse the repository at this point in the history
* ci: upgrade sealos cli in ci.

Signed-off-by: yy <lingdie.yy@outlook.com>

* ci: downgrade sealos cli in ci.

Signed-off-by: yy <lingdie.yy@outlook.com>

---------

Signed-off-by: yy <lingdie.yy@outlook.com>
  • Loading branch information
lingdie committed Nov 23, 2023
1 parent 4efa9d8 commit 4ef6bb6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/cloud-release.yml
Expand Up @@ -56,6 +56,16 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download sealos
uses: actions/download-artifact@v3
with:
name: sealos
path: /tmp/
- name: Verify sealos
run: |
sudo chmod a+x /tmp/sealos
sudo mv /tmp/sealos /usr/bin/sealos
sudo sealos version
- name: Build
run: export CLOUD_VERSION=${{ github.event.release.tag_name }} && export ARCH=amd64 && bash ./scripts/cloud/build-offline-tar.sh
- name: Setup ossutil
Expand All @@ -78,6 +88,16 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download sealos
uses: actions/download-artifact@v3
with:
name: sealos
path: /tmp/
- name: Verify sealos
run: |
sudo chmod a+x /tmp/sealos
sudo mv /tmp/sealos /usr/bin/sealos
sudo sealos version
- name: Build
run: export CLOUD_VERSION=${{ github.event.release.tag_name }} && export ARCH=arm64 && bash ./scripts/cloud/build-offline-tar.sh
- name: Setup ossutil
Expand Down

0 comments on commit 4ef6bb6

Please sign in to comment.