Skip to content

Delete CI.yml

Delete CI.yml #5

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container: ps2dev/ps2dev:v1.0
steps:
- name: Install dependencies
run: |
apk add build-base git
- uses: actions/checkout@v2
- name: Compile
run: |
make
- name: Upload artifacts
if: ${{ success() }}
uses: actions/upload-artifact@v2
with:
name: OSDSYS-LAUNCHER
path: |
*.ELF
- name: Create release
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main'
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
title: "Latest build"
files: |
*.ELF