Update Vineflower 1.11.0 with new Decompiler option API #33
Workflow file for this run
This file contains 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
# Making changes? https://github.com/nektos/act may help you test locally | |
name: "Build PR to Artifact" | |
on: | |
pull_request: | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.event.number || github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
build: | |
uses: ./.github/workflows/build-artifact.yaml | |
publish-pr-number: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "pr number / save" | |
if: "${{ always() }}" | |
run: "echo ${{ github.event.number }} > ./pr-num.txt" | |
- name: "pr number / publish" | |
if: "${{ always() }}" | |
uses: "actions/upload-artifact@v3" | |
with: | |
name: "pr-num" | |
path: "./pr-num.txt" | |
retention-days: 1 | |