Skip to content

Commit

Permalink
chore(php): fix pipeline (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
markphelps authored Jan 11, 2024
1 parent 4351508 commit 2c9618d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/package-sdks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@ jobs:
cd /usr/local
curl -L https://dl.dagger.io/dagger/install.sh | DAGGER_VERSION=0.9.5 sh
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.FLIPT_RELEASE_BOT_APP_ID }}
private_key: ${{ secrets.FLIPT_RELEASE_BOT_APP_PEM }}
installation_id: ${{ secrets.FLIPT_RELEASE_BOT_INSTALLATION_ID }}

- name: Build Individual SDK(s)
env:
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
run: |
dagger run go run ./build --languages=${{ inputs.sdk }} --push=true --tag=${{ inputs.tag }}

0 comments on commit 2c9618d

Please sign in to comment.