Skip to content

Commit

Permalink
add nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
spacemeowx2 committed Sep 21, 2020
1 parent fed2709 commit 299b71a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Nightly

on:
schedule:
- cron: '0 0 * * *'

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: update Atmosphere-libs
run: |
pushd Atmosphere-libs
git reset --hard origin/master
popd
- uses: spacemeowx2/devkitpro-action@latest
with:
cmd: make -j8

- name: Upload built files
uses: actions/upload-artifact@v1
with:
name: sdcard
path: out/sd

- name: Upload elf file
uses: actions/upload-artifact@v1
with:
name: ldn_mitm.elf
path: ldn_mitm/ldn_mitm.elf

0 comments on commit 299b71a

Please sign in to comment.