Skip to content

Commit

Permalink
Merge pull request #34 from aserto-dev/gh-codegen-app
Browse files Browse the repository at this point in the history
CI checks out the repo using a GH app token
  • Loading branch information
ronenh authored Oct 30, 2024
2 parents 0415752 + f2a195c commit fe41d81
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: ci

on:
Expand Down Expand Up @@ -30,12 +31,19 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
-
-
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.CODEGEN_APP_ID }}
private-key: ${{ secrets.CODEGEN_APP_KEY }}
-
name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
-
token: ${{ steps.app-token.outputs.token }}
-
name: Read Configuration
uses: hashicorp/vault-action@v3
id: vault
Expand All @@ -47,29 +55,29 @@ jobs:
kv/data/github "READ_WRITE_TOKEN" | GH_TOKEN;
kv/data/buf.build "ASERTO_BUF_USER" | BUF_USER;
kv/data/buf.build "ASERTO_BUF_TOKEN" | BUF_TOKEN;
-
-
name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
-
-
name: Setup buf
uses: bufbuild/buf-setup-action@v1
with:
version: ${{ env.BUF_VERSION }}
github_token: ${{ github.token }}
buf_user: ${{ steps.vault.outputs.BUF_USER }}
buf_api_token: ${{ steps.vault.outputs.BUF_TOKEN}}
-
-
name: Delete generated code
run: |
rm -rf ./aserto
-
-
name: Get latest version tag from Buf Registry
id: buf-latest
run: |
echo "VERSION=$(buf beta registry label list ${BUF_REPO} --format json --reverse | jq -r '.results[0].name')" >> "$GITHUB_OUTPUT"
-
-
name: Buf Generate
run: |
echo "${{ env.BUF_REPO }}:${{ steps.buf-latest.outputs.VERSION }}"
Expand All @@ -89,7 +97,7 @@ jobs:
name: Test
run: |
gotestsum --format short-verbose -- -count=1 -parallel=1 -v -timeout=240s -coverprofile=cover.out -coverpkg=./... ./...
-
-
name: Commit changes
if: github.event_name == 'workflow_dispatch'
uses: EndBug/add-and-commit@v9
Expand Down

0 comments on commit fe41d81

Please sign in to comment.