Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cdn-upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ jobs:
steps:
- name: Download build artifact
if: inputs.artifact_name != ''
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
Comment thread
arolos marked this conversation as resolved.
Comment thread
arolos marked this conversation as resolved.
with:
name: ${{ inputs.artifact_name }}
path: ${{ inputs.dist_dir }}

- name: Upload assets to Azure Blob Storage
uses: azure/CLI@v2
uses: azure/cli@v3
env:
SAS_TOKEN: ${{ secrets.CDN_SAS_TOKEN }}
CDN_ACCOUNT_NAME: ${{ inputs.cdn_account_name }}
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/oci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ on:

env:
REGISTRY: ghcr.io
Comment thread
kphunter marked this conversation as resolved.
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true

jobs:
build:
Expand All @@ -104,7 +103,7 @@ jobs:
actions: read # Required by codeql-action/upload-sarif on private repos

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -245,7 +244,7 @@ jobs:
${{ env.REGISTRY }}/${{ github.repository }}/${{ inputs.image_name }}:${{ steps.version.outputs.next }}-rc.${{ steps.version.outputs.ts }}.${{ steps.version.outputs.short }}

# ── Sign with Cosign (keyless / Sigstore) ────────────────
- uses: sigstore/cosign-installer@v3
- uses: sigstore/cosign-installer@v4
if: steps.changes.outputs.changed == 'true' && github.event_name != 'pull_request'

- name: Sign image
Expand Down