Skip to content

Commit

Permalink
Create OPLTestISO.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps authored Nov 16, 2022
1 parent 6c5eaf5 commit ea5e27a
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/OPLTestISO.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
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

0 comments on commit ea5e27a

Please sign in to comment.