Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build-previews.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
id: get-workflow-artifacts
with:
script: |
import script from './.github/actions/get-workflow-artifacts.ts'
const { default: script } = await import('${{ github.workspace }}/.github/actions/get-workflow-artifacts.ts')
await script({ github, context, core })

- name: Find comment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bump-manifest-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
INPUT_VERSION: ${{ github.event.inputs.version }}
with:
script: |
import script from './.github/actions/bump-manifest-version.ts'
const { default: script } = await import('${{ github.workspace }}/.github/actions/bump-manifest-version.ts')
await script({ github, context, core })

- name: Format with Biome
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-pr-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
uses: actions/github-script@v8
with:
script: |
import script from './.github/actions/delete-artifacts.ts'
const { default: script } = await import('${{ github.workspace }}/.github/actions/delete-artifacts.ts')
await script({ github, context, core })
2 changes: 1 addition & 1 deletion .github/workflows/nightly-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
id: version
with:
script: |
import script from './.github/actions/get-built-version.ts'
const { default: script } = await import('${{ github.workspace }}/.github/actions/get-built-version.ts')
await script({ github, context, core })

- name: Delete existing release
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
id: version
with:
script: |
import script from './.github/actions/get-built-version.ts'
const { default: script } = await import('${{ github.workspace }}/.github/actions/get-built-version.ts')
await script({ github, context, core })

- name: Delete existing release # To keep the workflow idempotent.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
INPUT_VERSION: ${{ github.event.inputs.version }}
with:
script: |
import script from './.github/actions/validate-stable-release.ts'
const { default: script } = await import('${{ github.workspace }}/.github/actions/validate-stable-release.ts')
await script({ github, context, core })

- name: Build
Expand All @@ -54,7 +54,7 @@ jobs:
id: version
with:
script: |
import script from './.github/actions/get-built-version.ts'
const { default: script } = await import('${{ github.workspace }}/.github/actions/get-built-version.ts')
await script({ github, context, core })

- name: Delete existing release # To keep the workflow idempotent.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: actions/github-script@v8
with:
script: |
import script from './.github/actions/tests-e2e-filter.ts'
const { default: script } = await import('${{ github.workspace }}/.github/actions/tests-e2e-filter.ts')
await script({ github, context, core })

test-e2e:
Expand Down
Loading