Skip to content

Update main.c

Update main.c #14

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
container: ps2dev/ps2dev:latest
steps:
- name: Install dependencies
run: |
apk add build-base git
- uses: actions/checkout@v3
- run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
git fetch --prune --unshallow
- name: Compile
run: |
make clean all
- name: Upload artifacts
if: ${{ success() }}
uses: actions/upload-artifact@v4
with:
name: KEKFBINDER_TEST
path: |
*.ELF
- name: Create release
if: github.ref == 'refs/heads/main'
uses: softprops/action-gh-release@v2
with:
prerelease: true
generate_release_notes: true
tag_name: "latest"
body: "![dl](https://img.shields.io/github/downloads/israpps/system2x6-dongle-dumper/latest/total?style=for-the-badge&logo=github)"
files: |
*.ELF