Skip to content

Commit

Permalink
Create docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholas477 authored Nov 22, 2023
1 parent e7cc33b commit 9502294
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Docker Image CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest
container: ps2dev/ps2sdk

steps:
- uses: actions/checkout@v3
- name: Get dependencies
run: |
apk add build-base git
- name: Install ps2stuff
run: |
git clone https://github.com/ps2dev/ps2stuff.git
cd ps2stuff && make clean all install

0 comments on commit 9502294

Please sign in to comment.