-
Notifications
You must be signed in to change notification settings - Fork 960
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add postsubmit task for hydrating proxy
- Loading branch information
1 parent
b692129
commit f9ca21a
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: PostSubmit | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
pull_request: | ||
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: | | ||
Check failure on line 16 in .github/workflows/postsubmit.yaml GitHub Actions / ci
Check failure on line 16 in .github/workflows/postsubmit.yaml GitHub Actions / ci
|
||
mkdir -p hydrate-goproxy | ||
cd hydrate-goproxy | ||
go mod init hydrate-goproxy | ||
go get ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}@${GITHUB_SHA} |