diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 2e15788eb85..7bcf820a8d8 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -194,9 +194,9 @@ jobs: source ./configuration echo Placing custom Deno ${DENO:1}. See available versions at https://anaconda.org/conda-forge/deno/files - curl -L https://anaconda.org/conda-forge/deno/${DENO:1}/download/linux-64/deno-${DENO:1}-hfc7925d_0.conda --output deno.conda + curl -L https://anaconda.org/conda-forge/deno/${DENO:1}/download/linux-64/deno-${DENO:1}-hcab8b69_0.conda --output deno.conda unzip deno.conda - tar --use-compress-program=unzstd -xvf pkg-deno-${DENO:1}-hfc7925d_0.tar.zst + tar --use-compress-program=unzstd -xvf pkg-deno-${DENO:1}-hcab8b69_0.tar.zst cp bin/deno package/pkg-working/bin/tools/x86_64/deno - name: Make Tarball diff --git a/dev-docs/upgrade-dependencies.md b/dev-docs/upgrade-dependencies.md index cf45e605dae..3d820519022 100644 --- a/dev-docs/upgrade-dependencies.md +++ b/dev-docs/upgrade-dependencies.md @@ -12,6 +12,18 @@ Contact JJ so he uploads the binaries to the S3 bucket. - run `./package/scripts/vendoring/vendor.sh` +### Upgrade Deno download link for RHEL build from conda-forge + +- Go to and find the version of Deno required. + - BTW those versions are built at +- Take the hash part of the download link for linux-64 (e.g. `hcab8b69_0` for `linux-64/deno-1.46.3-hcab8b69_0.conda`) +- Use it in the build release action: `.github\workflows\create-release.yml` at the step `- name: Move Custom Deno` + ``` + echo Placing custom Deno ${DENO:1}. See available versions at https://anaconda.org/conda-forge/deno/files + curl -L https://anaconda.org/conda-forge/deno/${DENO:1}/download/linux-64/deno-${DENO:1}-hcab8b69_0.conda --output deno.conda + ``` +- Commit the `create-release.yml` + ## Upgrade mermaidjs Apparently mermaidjs doesn't actually build mermaid in their releases :shrug:.