1.6.2 #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: post_publish | |
on: | |
release: | |
types: [published] | |
jobs: | |
update-dl-version: | |
name: update dl.deno.land version | |
runs-on: ubuntu-22.04 | |
if: github.repository == 'denoland/fresh' | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Authenticate with Google Cloud | |
uses: google-github-actions/auth@v2 | |
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@v2 | |
with: | |
project_id: denoland | |
- name: Upload version file to dl.deno.land | |
run: | | |
cat versions.json | jq -r ".[0]" > release-latest.txt | |
gsutil -h "Cache-Control: no-cache" cp release-latest.txt gs://dl.deno.land/fresh/release-latest.txt |