on: push: tags: '[0-9]+.[0-9]+.[0-9]+' permissions: read-all jobs: # This step builds our artifacts, uploads them to the workflow run, and # outputs their digest. build: outputs: hashes: ${{ steps.hash.outputs.hashes }} runs-on: ubuntu-latest steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Build artifacts run: | git archive --prefix=kokkos-${{ github.ref_name }}/ -o kokkos-${{ github.ref_name }}.zip HEAD git archive --prefix=kokkos-${{ github.ref_name }}/ -o kokkos-${{ github.ref_name }}.tar.gz HEAD - name: Generate hashes shell: bash id: hash run: | # sha256sum generates sha256 hash for all artifacts. # base64 -w0 encodes to base64 and outputs on a single line. sha256sum kokkos-${{ github.ref_name }}.zip kokkos-${{ github.ref_name }}.tar.gz > kokkos-${{ github.ref_name }}-SHA-256.txt echo "hashes=$(base64 -w0 kokkos-${{ github.ref_name }}-SHA-256.txt)" >> "$GITHUB_OUTPUT" - name: Upload artifacts uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: release-artifacts path: kokkos-${{ github.ref_name }}* if-no-files-found: error retention-days: 5 # This step calls the generic workflow to generate provenance. provenance: needs: [build] permissions: actions: read id-token: write contents: write uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@f7dd8c54c2067bafc12ca7a55595d5ee9b75204a # v2.1.0 with: base64-subjects: "${{ needs.build.outputs.hashes }}" # Upload provenance to a new release upload-assets: true provenance-name: "kokkos-${{ github.ref_name }}.intoto.jsonl" # This step uploads our artifacts to the tagged GitHub release. release: needs: [build, provenance] permissions: contents: write runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') steps: - name: Download artifacts uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0 with: name: release-artifacts - name: Upload assets uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0 with: files: | kokkos-${{ github.ref_name }}.zip kokkos-${{ github.ref_name }}.tar.gz kokkos-${{ github.ref_name }}-SHA-256.txt