From f1f994bcbf852c73e24a58da0deba288ccbfdfc1 Mon Sep 17 00:00:00 2001 From: Tanya Verma Date: Tue, 21 Jan 2025 14:56:20 -0800 Subject: [PATCH] Create release.yml --- .github/workflows/release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..b865b01 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,22 @@ +name: Build and Attest + +on: + push: + tags: + - 'v*' + +jobs: + release: + runs-on: large + permissions: + contents: write + packages: write + id-token: write + attestations: write + + steps: + - uses: actions/checkout@v4 + - uses: tinfoilanalytics/nitro-enclave-build-action@v0.0.1 + with: + docker-context: . + github-token: ${{ secrets.GITHUB_TOKEN }}