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 b5e5c61
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/postsubmit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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
env:
REPO: ${{ github.repository }}
run: |

Check failure on line 18 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 18 in .github/workflows/postsubmit.yaml

View workflow job for this annotation

GitHub Actions / ci

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

0 comments on commit b5e5c61

Please sign in to comment.