This commit is contained in:
parent
c04309baaf
commit
641850eb50
1 changed files with 21 additions and 0 deletions
21
.forgejo/workflows/build.yaml
Normal file
21
.forgejo/workflows/build.yaml
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
on: [push]
|
||||
|
||||
name: Build
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Check out the code
|
||||
uses: action/checkout@v4
|
||||
- name: Set up the build environment
|
||||
run: cmake .
|
||||
- name: Compile the code
|
||||
run: cmake --build .
|
||||
- name: Save executable
|
||||
uses: forgejo/upload-artifact@v4
|
||||
with:
|
||||
name: bin.zip
|
||||
path: perlin-noise
|
Loading…
Add table
Add a link
Reference in a new issue