fix: output reference in workflow (#552) #30
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-please | |
| "on": | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| packages: write | |
| attestations: write | |
| id-token: write | |
| jobs: | |
| release-please: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| release_created: ${{ steps.release.outputs.release_created }} | |
| tag_name: ${{ steps.release.outputs.tag_name }} | |
| upload_url: ${{ steps.release.outputs.upload_url }} | |
| steps: | |
| - uses: googleapis/release-please-action@v4 | |
| id: release | |
| with: | |
| token: ${{ secrets.PORTER_GITHUB_TOKEN }} | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| if: ${{ steps.release.outputs.release_created }} | |
| - name: Upload cookbook as artifact | |
| if: ${{ steps.release.outputs.release_created }} | |
| id: upload | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: haproxy-cookbook-${{ steps.release.outputs.tag_name }} | |
| path: | | |
| . | |
| !.git/ | |
| !.github/ | |
| !.kitchen/ | |
| !.vscode/ | |
| !documentation/ | |
| !.gitignore | |
| !test/ | |
| !spec/ | |
| retention-days: 90 | |
| compression-level: 6 | |
| - name: Generate artifact attestation | |
| if: ${{ steps.release.outputs.release_created }} | |
| uses: actions/attest-build-provenance@v3 | |
| with: | |
| subject-name: haproxy-cookbook-${{ steps.release.outputs.tag_name }} | |
| subject-digest: sha256:${{ steps.upload.outputs.artifact-digest }} | |
| publish-to-supermarket: | |
| needs: release-please | |
| if: ${{ needs.release-please.outputs.release_created }} | |
| runs-on: ubuntu-latest | |
| container: | |
| image: chef/chefworkstation:latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Configure Chef credentials | |
| run: | | |
| mkdir -p ~/.chef | |
| echo "${{ secrets.CHEF_SUPERMARKET_KEY }}" > ~/.chef/supermarket.pem | |
| chmod 600 ~/.chef/supermarket.pem | |
| - name: Publish to Chef Supermarket | |
| run: | | |
| knife supermarket share haproxy ${{ steps.release-please.outputs.tag_name }} \ | |
| --supermarket-site https://supermarket.chef.io \ | |
| --key ~/.chef/supermarket.pem \ | |
| --user ${{ secrets.CHEF_SUPERMARKET_USER }} \ | |
| --cookbook-path ../ |