Skip to content

Commit

Permalink
re-generate workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ilg-ul committed Jun 16, 2024
1 parent ab7e9d1 commit 57edafc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-xbbla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,15 @@ jobs:
xpm run build --config linux-arm64
- name: Upload platform artefacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3 # v3 for 18.04
with:
name: deploy-linux-arm64
path: ${{ github.workspace }}/build/linux-arm64/deploy/*
overwrite: true

- name: 'Publish pre-release'
# https://github.com/ncipollo/release-action
uses: ncipollo/release-action@v1.14.0
uses: ncipollo/release-action@v1.13.0 # v1.13 for 18.04
with:
allowUpdates: true
artifacts: 'build/linux-arm64/deploy/*'
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
# https://github.com/actions/checkout
- name: 'Checkout project'
uses: actions/checkout@v4
uses: actions/checkout@v3 # v3 for 18.04
with:
fetch-depth: 3

Expand All @@ -180,10 +180,10 @@ jobs:
uses: docker://node:lts-slim # Currently based on debian:12-slim
with:
entrypoint: /bin/bash
args: /github/workspace/scripts/test.sh --image debian --version ${{ github.event.inputs.version }} --base-url ${{ github.event.inputs.base_url }}
args: /github/workspace/scripts/test.sh --image debian --version ${{ github.event.inputs.version }} --base-url pre-release

- name: Upload platform tests report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3 # v3 for 18.04
with:
name: tests-report-linux-arm64
path: ${{ github.workspace }}/build/linux-arm64/artefacts/tests-report-*.md
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-xbbla32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
# https://github.com/actions/checkout
- name: 'Checkout project'
uses: actions/checkout@v3
uses: actions/checkout@v3 # v3 for 18.04
with:
fetch-depth: 3

Expand All @@ -183,7 +183,7 @@ jobs:
args: /github/workspace/scripts/test.sh --image debian --version ${{ github.event.inputs.version }} --base-url pre-release

- name: Upload platform tests report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3 # v3 for 18.04
with:
name: tests-report-linux-arm
path: ${{ github.workspace }}/build/linux-arm/artefacts/tests-report-*.md
Expand Down

0 comments on commit 57edafc

Please sign in to comment.