add bo7 ff file #25
This file contains hidden or 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: 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 | |