Skip to content

Commit

Permalink
ci: Add postsubmit task for hydrating proxy (#6047)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-innis authored Apr 16, 2024
1 parent b692129 commit 895899a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/postsubmit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: PostSubmit
on:
push:
branches:
- main
workflow_dispatch:
jobs:
postsubmit:
if: github.repository == 'aws/karpenter-provider-aws'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/install-deps
- name: hydrate-goproxy
run: |
mkdir -p hydrate-goproxy
cd hydrate-goproxy
go mod init hydrate-goproxy
go get "github.com/${GITHUB_REPOSITORY}@${GITHUB_SHA}"

0 comments on commit 895899a

Please sign in to comment.