mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
1776dca6c7
This commit rolls up following PRs into a single one: - https://github.com/denoland/deno/pull/16672 - https://github.com/denoland/deno/pull/16674 - https://github.com/denoland/deno/pull/16972 Generation script was updated to take into account these changes. Co-authored-by: Asher Gomez <ashersaupingomez@gmail.com> Co-authored-by: Geert-Jan Zwiers <geertjanzwiers@protonmail.com> Co-authored-by: David Sherret <dsherret@gmail.com>
29 lines
833 B
YAML
29 lines
833 B
YAML
name: post_publish
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
update-dl-version:
|
|
name: update dl.deno.land version
|
|
runs-on: ubuntu-20.04
|
|
if: github.repository == 'denoland/deno'
|
|
steps:
|
|
- name: Authenticate with Google Cloud
|
|
uses: google-github-actions/auth@v1
|
|
with:
|
|
project_id: denoland
|
|
credentials_json: ${{ secrets.GCP_SA_KEY }}
|
|
export_environment_variables: true
|
|
create_credentials_file: true
|
|
|
|
- name: Setup gcloud
|
|
uses: google-github-actions/setup-gcloud@v1
|
|
with:
|
|
project_id: denoland
|
|
|
|
- name: Upload version file to dl.deno.land
|
|
run: |
|
|
echo ${GITHUB_REF#refs/*/} > release-latest.txt
|
|
gsutil -h "Cache-Control: no-cache" cp release-latest.txt gs://dl.deno.land/release-latest.txt
|