mirror of
https://github.com/LIV2/RIDE.git
synced 2025-12-06 04:22:43 +00:00
60 lines
1.3 KiB
YAML
60 lines
1.3 KiB
YAML
name: Generate release files
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "Release_**"
|
|
- "Rev**"
|
|
- "Proto**"
|
|
- "proto**"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
make_software:
|
|
runs-on: ubuntu-latest
|
|
container: stefanreinauer/amiga-gcc:latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ secrets.ACCESS_TOKEN }}
|
|
submodules: true
|
|
|
|
- name: Build
|
|
run: |
|
|
git config --global --add safe.directory "*"
|
|
git fetch --prune --unshallow --tags
|
|
cd Software && make package
|
|
|
|
- uses: actions/upload-artifact@v4.4.0
|
|
with:
|
|
name: software
|
|
path: |
|
|
Software/artifacts/*
|
|
if-no-files-found: error
|
|
|
|
draft_release:
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- make_software
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Zip Gerbers
|
|
run: zip -r Gerbers.zip Gerbers
|
|
- uses: actions/download-artifact@v4.1.7
|
|
with:
|
|
path: artifacts
|
|
- name: release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
draft: true
|
|
files: |
|
|
Docs/Schematic.pdf
|
|
Docs/*.html
|
|
Gerbers/*.csv
|
|
Gerbers.zip
|
|
Binary/*.jed
|
|
artifacts/software/*
|