Skip to content

Commit

Permalink
Enable Github Action
Browse files Browse the repository at this point in the history
privat committed Jun 26, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent b5ff7d5 commit a2b08f1
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Makefile CI

on:
push:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- run: sudo apt-get update && sudo apt-get install openjdk-17-jdk-headless
- uses: actions/checkout@v4
- run: git submodule update --init
- run: ./build-jar.sh
- run: ./build-jar-flatlaf.sh
- uses: actions/upload-artifact@v4
with:
path: '*.jar'
- run: ./test.sh
- uses: softprops/action-gh-release@v2
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/test-ci'
with:
files: rars-flatlaf.jar
tag_name: 'lastest'
make_latest: true

0 comments on commit a2b08f1

Please sign in to comment.