Skip to content

Commit

Permalink
workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ELY M. committed Oct 13, 2024
1 parent 7a4fcff commit c3d0f05
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build libnx

on:
push:
branches:
- master
pull_request:

jobs:
build:
name: Test build
runs-on: ubuntu-latest
container:
image: 'devkitpro/devkita64'

steps:
- uses: actions/checkout@v2
with:
persist-credentials: false

- name: build
run: make -j2

- name: test
run: ls -la

- name: Publish GitHub release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.run_number }}
prerelease: false
draft: false
body: ${{ github.event.head_commit.message }}
files: fuck-u.nro
name: "Switch Release #${{ github.run_number }}"

0 comments on commit c3d0f05

Please sign in to comment.