Linux release #342
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: Linux release | |
on: | |
workflow_run: | |
workflows: ["Release setup"] | |
types: [completed] | |
jobs: | |
buildLinux: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] | |
steps: | |
- name: Job info | |
run: | | |
echo "GitHub Ref: ${{ github.ref }}" | |
echo "Event: ${{ github.event }}" | |
- name: checkout sources | |
uses: actions/checkout@v2 | |
#- name: Install sudo package | |
#run: apt update && apt install sudo | |
- name: build_all_static | |
run: bscripts/build_all_static.sh | |
- name: package artifacts deb | |
run: | | |
bscripts/build_package.sh | |
- name: package artifacts appimage | |
if: ${{ matrix.os == 'ubuntu-20.04' }} | |
run: | | |
bscripts/build_appimage.sh | |
- uses: actions/upload-artifact@v4 | |
if: github.ref == 'refs/heads/master' | |
with: | |
name: picsimlab_pkg-${{ matrix.os }} | |
path: release*/* | |
- name: Latest code build release | |
uses: softprops/action-gh-release@v1 | |
if: github.ref == 'refs/heads/master' | |
with: | |
prerelease: true | |
files: release_*/* | |
tag_name: latestbuild | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- if: (startsWith(github.ref, 'refs/tags/')) | |
name: tagged release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: release_*/* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |