Skip to content

add bo7 ff file

add bo7 ff file #25

Workflow file for this run

name: Release
on:
push:
paths:
- "hashes/**"
- ".github/workflows/release.yml"
workflow_dispatch:
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- uses: actions/checkout@v3.5.3
with:
submodules: true
- name: Build hashes (ACEF)
shell: pwsh
run: scripts/compile.ps1 -ext acef
- name: Build hashes (WNI)
shell: pwsh
run: scripts/compile.ps1 -ext wni
- name: Upload release (ACEF)
if: github.ref == 'refs/heads/main'
uses: ncipollo/release-action@v1
with:
commit: ${{ github.sha }}
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: "build/package-acef/*"
artifactErrorsFailBuild: true
removeArtifacts: true
replacesArtifacts: true
allowUpdates: true
tag: "release-acef"
name: "Hash index (ACEF)"
bodyFile: RELEASE.MD
- name: Upload release (WNI)
if: github.ref == 'refs/heads/main'
uses: ncipollo/release-action@v1
with:
commit: ${{ github.sha }}
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: "build/package-wni/*"
artifactErrorsFailBuild: true
removeArtifacts: true
replacesArtifacts: true
allowUpdates: true
makeLatest: true
tag: "release"
name: "Hash index (WNI)"
bodyFile: RELEASE.MD