SnapshotRelease #220
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
name: SnapshotRelease | |
on: | |
workflow_run: | |
workflows: [ApprovalComment] | |
types: [completed] | |
permissions: | |
id-token: write | |
pull-requests: write | |
contents: write | |
statuses: write | |
jobs: | |
release: | |
if: github.event.workflow_run.conclusion == 'success' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/download-artifact | |
- name: Parse artifacts and assign GA environment variables | |
run: | | |
repo=$(head -n 1 /tmp/artifacts/metadata.txt) | |
pr_number=$(head -n 1 /tmp/artifacts/metadata.txt) | |
pr_commit=$(tail -n 1 /tmp/artifacts/metadata.txt) | |
echo "PR_COMMIT=$pr_commit" >> $GITHUB_ENV | |
echo "PR_NUMBER=$pr_number" >> $GITHUB_ENV | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ env.PR_COMMIT }} | |
- uses: ./.github/actions/commit-status/start | |
with: | |
name: "${{ github.workflow }} / ${{ github.job }} (pull_request_review)" | |
git_ref: ${{ env.PR_COMMIT }} | |
- uses: ./.github/actions/install-deps | |
- uses: ./.github/actions/authenticate-aws | |
- run: make release | |
env: | |
GH_PR_NUMBER: ${{env.PR_NUMBER}} | |
- uses: actions/github-script@v6 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
github.rest.issues.createComment({ | |
issue_number: `${{env.PR_NUMBER}}`, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: 'Snapshot successfully published to `oci://public.ecr.aws/karpenter/karpenter:v0-${{env.PR_COMMIT}}`. Find the image tag and installation instructions at https://gallery.ecr.aws/karpenter/karpenter/' | |
}) | |
- if: always() | |
uses: ./.github/actions/commit-status/end | |
with: | |
name: "${{ github.workflow }} / ${{ github.job }} (pull_request_review)" | |
git_ref: ${{ env.PR_COMMIT }} |