Skip to content

bump ci

bump ci #50

Workflow file for this run

name: Compile Bootloaders
on:
push:
branches: [ master ]
release:
types:
- published
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container: debian:latest
steps:
- uses: actions/checkout@v3
- name: Build jumploaders
run: sh build.sh
- name: Find artifact files
run: find build/ -type f -name "*.bin" > artifact_files.txt
- name: Print files for debugging
run: cat artifact_files.txt
- name: Prepare artifact paths
id: prepare
run: |
# Convert the list of files into a space-separated list
artifact_paths=$(awk '{printf "%s ", $0}' artifact_files.txt)
# Remove the trailing space
artifact_paths=$(echo "$artifact_paths" | sed 's/ $//')
echo "artifact_paths=${artifact_paths}" >> $GITHUB_ENV
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: Pre-Compiled Jumploaders
path: ${{ env.artifact_paths }}
if-no-files-found: error
include-hidden-files: false
publish_release:
name: Publish (Release)
runs-on: ubuntu-latest
needs: [build]
if: github.event.release.tag_name
steps:
- uses: actions/download-artifact@v3
with:
name: Pre-Compiled Jumploaders
path: build/
- uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: Release ${{ github.ref_name }}
files: build/*.bin
fail_on_unmatched_files: true