Skip to content

Build

Build #4

Workflow file for this run

name: Build
on:
workflow_dispatch
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install afdko
run: pip3 install afdko
- name: Build
run: sh build.sh
- name: Upload to release
uses: ncipollo/release-action@v1
with:
token: "${{ secrets.GITHUB_TOKEN }}"
tag: "test-build-01"
artifacts: "*.7z"
allowUpdates: true
prerelease: true
draft: true
name: "Build Test"
body: "Test"