Bumping versions #86
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 pull-request to develop branch | |
on: | |
pull_request: | |
branches: [ develop ] | |
workflow_dispatch: | |
jobs: | |
Build: | |
name: Build Snapshot | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get latest Docker image | |
run: docker pull pi4j/pi4j-builder:2.0 | |
- name: Build entire Pi4J Project in Docker | |
env: | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | |
run: docker run --env MAVEN_USERNAME=$MAVEN_USERNAME --env MAVEN_PASSWORD=$MAVEN_PASSWORD --user "$(id -u):$(id -g)" --rm --volume $(pwd):/build pi4j/pi4j-builder:2.0 clean install -Pnative,cross-compile --batch-mode | |
- name: Make staging directory | |
run: mkdir staging | |
- name: Copy distribution files to staging | |
run: | | |
cp -r pi4j-distribution/target/*.deb staging | |
cp -r pi4j-distribution/target/*.zip staging | |
- name: Upload distribution files to staging | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pi4j-v2-dist | |
path: staging |