Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezleak authored May 12, 2024
1 parent 02f64bb commit d24ad37
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: ci

on: [push, workflow_dispatch]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v1
with:
java-version: 8
- name: Build
run: bash run-demo.sh

- name: Upload build output
uses: actions/upload-artifact@v1
with:
name: upload
path: ../tmp/mesa

0 comments on commit d24ad37

Please sign in to comment.