mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-15 23:05:57 +01:00
[cherry-pick]Fix setup gcloud error (#17850)
Fix setup gcloud error ubuntu-latest was upgraded from ubuntu-20.04 to ubuntu-22.04, the python version of ubuntu-22.04 is 3.10, but gcloud does not support python 3.10, so ubuntu is fixed to version 20.04 Signed-off-by: Yang Jiao <jiaoya@vmware.com>
This commit is contained in:
parent
a75a96bb56
commit
16f0f69f97
11
.github/workflows/build-package.yml
vendored
11
.github/workflows/build-package.yml
vendored
@ -9,22 +9,21 @@ on:
|
||||
- release-*
|
||||
tags:
|
||||
- v*
|
||||
|
||||
jobs:
|
||||
BUILD_PACKAGE:
|
||||
env:
|
||||
BUILD_PACKAGE: true
|
||||
runs-on:
|
||||
#- self-hosted
|
||||
- ubuntu-latest
|
||||
- ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: 'google-github-actions/auth@v0'
|
||||
with:
|
||||
credentials_json: '${{ secrets.GCP_CREDENTIALS }}'
|
||||
- uses: google-github-actions/setup-gcloud@v0
|
||||
with:
|
||||
version: '285.0.0'
|
||||
project_id: ${{ secrets.GCP_PROJECT_ID }}
|
||||
service_account_email: ${{ secrets.GCP_SA_EMAIL }}
|
||||
service_account_key: ${{ secrets.GCP_SA_KEY }}
|
||||
export_default_credentials: true
|
||||
- run: gcloud info
|
||||
- name: Set up Go 1.17
|
||||
uses: actions/setup-go@v1
|
||||
|
Loading…
Reference in New Issue
Block a user