Skip to content

Commit

Permalink
one more try
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh committed May 31, 2024
1 parent 4eb37b0 commit 94d3c1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
run: |
KOTS_TAG=$(gh release view --repo replicatedhq/kots --json tagName -q .tagName)
./scripts/build-local.sh "$KOTS_TAG"
echo "chart-path=admin-console-${KOTS_TAG#v}.tgz" >> "$GITHUB_OUTPUT"
export KOTS_TAG=$(gh release view --repo replicatedhq/kots --json tagName -q .tagName)
make build
echo "chart-path=${{ github.workspace }}/admin-console-${{ env.KOTS_TAG#v }}.tgz" >> "$GITHUB_OUTPUT"
e2e:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.PHONY: build
build:
./scripts/build-local.sh ${KOTS_TAG}

0 comments on commit 94d3c1c

Please sign in to comment.