Skip to content

Commit

Permalink
feature: initial build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Nine-H committed Jun 23, 2024
1 parent cf05a29 commit 8271acc
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Nightly Build

on:
push:
branches:
- refactor-build

jobs:
build:
name: Nightly Build
runs-on: ubuntu-latest
steps:

- name: checkout
uses: actions/checkout@v2

- name: build x86_64
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd projects
make PLATFORM=X64
gh release upload nightly lgpt.x64

0 comments on commit 8271acc

Please sign in to comment.