This repository has been archived by the owner on Aug 31, 2024. It is now read-only.
Merge branch 'end-of-2022' into smaller-steps-redsonbr-2 #4
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: CI-OPLTestISO | |
on: | |
push: | |
paths: | |
- '.github/workflows/OPLTestISO.yml' | |
- 'labs/opltestiso/**' | |
workflow_dispatch: | |
jobs: | |
build-opltestiso: | |
runs-on: ubuntu-latest | |
container: ps2dev/ps2dev:latest | |
steps: | |
- name: Install dependencies | |
run: apk add build-base git zip cdrkit | |
- name: git checkout | |
uses: actions/checkout@v3 | |
- run: | | |
git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
git fetch --prune --unshallow | |
- name: make ISO | |
run: | | |
cd labs/opltestiso/ | |
make iso | |
- name: Upload release artifact ISO | |
uses: actions/upload-artifact@v3 | |
with: | |
name: OPLTESTISO | |
path: | | |
labs/opltestiso/*.iso |