1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

ci: Fix uploading latest canary version (#25725)

This commit is contained in:
Bartek Iwańczuk 2024-09-19 12:46:40 +01:00 committed by GitHub
parent bb45446fa7
commit 51cac074dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 10 additions and 0 deletions

View file

@ -1087,6 +1087,7 @@ const ci = {
if: if:
"github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'", "github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'",
steps: [ steps: [
...cloneRepoStep,
authenticateWithGoogleCloud, authenticateWithGoogleCloud,
{ {
name: "Setup gcloud", name: "Setup gcloud",

View file

@ -683,6 +683,15 @@ jobs:
- build - build
if: github.repository == 'denoland/deno' && github.ref == 'refs/heads/main' if: github.repository == 'denoland/deno' && github.ref == 'refs/heads/main'
steps: steps:
- name: Configure git
run: |-
git config --global core.symlinks true
git config --global fetch.parallel 32
- name: Clone repository
uses: actions/checkout@v4
with:
fetch-depth: 50
submodules: false
- name: Authenticate with Google Cloud - name: Authenticate with Google Cloud
uses: google-github-actions/auth@v2 uses: google-github-actions/auth@v2
with: with: