Try with branches. #2
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 Artifacts patched by hiddenalpha | |
on: | |
push: | |
branches: | |
- "wip-TryAddMyCustomReleaseBuild-20241123" | |
#tags: | |
# - '^v[0-9]+\.[0-9]+\.[0-9]+(-.*)?$' | |
jobs: | |
linux-x86_64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up build environment | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends -y maven cmake make g++ | |
- name: Build the project | |
run: | | |
mvn -Px86_64 clean verify | |
echo "Artifacts:" target/jssc-*-*.jar | |
echo "artifact_name=$(basename target/jssc-*-macos-aarch64*.jar)" >> $GITHUB_ENV | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ env.artifact_name }} | |
path: target/${{ env.artifact_name }} | |
# linux-x86: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v3 | |
# - name: Set up build environment | |
# run: | | |
# sudo apt-get update | |
# sudo apt-get install --no-install-recommends -y maven cmake make g++ | |
# - name: Build the project | |
# run: | | |
# mvn -Px86 clean verify | |
# echo "Artifacts:" target/jssc-*-*.jar | |
# echo "artifact_name=$(basename target/jssc-*-macos-aarch64*.jar)" >> $GITHUB_ENV | |
# - name: Upload build artifact | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: ${{ env.artifact_name }} | |
# path: target/${{ env.artifact_name }} | |
# | |
# windows-x86_64: | |
# runs-on: windows-latest | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v3 | |
# - name: Set up build environment | |
# run: | | |
# choco install visualstudio2019community | |
# - name: Build the project | |
# run: | | |
# mvn -Px86_64 clean verify | |
# echo "Artifacts:" target/jssc-*-*.jar | |
# echo "artifact_name=$(basename target/jssc-*-macos-aarch64*.jar)" >> $GITHUB_ENV | |
# - name: Upload build artifact | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: ${{ env.artifact_name }} | |
# path: target/${{ env.artifact_name }} | |
# | |
# macos-aarch64: | |
# runs-on: macos-latest | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v3 | |
# - name: Set up build environment | |
# run: | | |
# brew install openjdk maven clang cmake | |
# - name: Build the project | |
# run: | | |
# mvn -Px86_64 clean verify | |
# echo "Artifacts:" target/jssc-*-*.jar | |
# echo "artifact_name=$(basename target/jssc-*-macos-aarch64*.jar)" >> $GITHUB_ENV | |
# - name: Upload build artifact | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: ${{ env.artifact_name }} | |
# path: target/${{ env.artifact_name }} | |