Skip to content

Commit

Permalink
Add postsubmit task for hydrating proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathan-innis committed Apr 16, 2024
1 parent b692129 commit f9ca21a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/postsubmit.yaml
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

View workflow job for this annotation

GitHub Actions / ci

shellcheck reported issue in this script: SC2086:info:4:8: Double quote to prevent globbing and word splitting

Check failure on line 16 in .github/workflows/postsubmit.yaml

View workflow job for this annotation

GitHub Actions / ci

shellcheck reported issue in this script: SC2086:info:4:29: Double quote to prevent globbing and word splitting

Check failure on line 16 in .github/workflows/postsubmit.yaml

View workflow job for this annotation

GitHub Actions / ci

shellcheck reported issue in this script: SC2086:info:4:50: Double quote to prevent globbing and word splitting
mkdir -p hydrate-goproxy
cd hydrate-goproxy
go mod init hydrate-goproxy
go get ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}@${GITHUB_SHA}

0 comments on commit f9ca21a

Please sign in to comment.