Github Action output not saving – Ubuntu
I'm attempting to save the result of a GitHub Actions job to be used by another job, like this: jobs: job1: runs-on: ubuntu-latest # Map a step output to a job output outputs: output1: ${{ steps.step1.outputs.test }} steps: - id:…