fixes #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Application | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build-mac: | |
# This job runs on macOS | |
# It requires just and uv to be installed | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install just | |
uses: extractions/setup-just@v2 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
- name: Build | |
run: | | |
just package-mac | |
# This will upload the built application to the artifacts application is located at dist/RDFCraft.app | |
- name: Archive | |
uses: actions/upload-artifact@v2 | |
with: | |
name: RDFCraft | |
path: dist/RDFCraft.app | |
build-win: | |
# This job runs on Windows | |
# It requires just and uv to be installed | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install just | |
uses: extractions/setup-just@v2 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
- name: Build | |
run: | | |
just package-win | |
# This will upload the built application to the artifacts application is located at dist/RDFCraft.exe | |
- name: Archive | |
uses: actions/upload-artifact@v2 | |
with: | |
name: RDFCraft | |
path: dist/RDFCraft.exe |