diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..9bc6e69 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,18 @@ +name: publish + +on: + workflow_dispatch: + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/create-github-app-token@v1 + id: token + with: + app-id: ${{ vars.KENTIK_MACHINERY_APP_ID }} + private-key: ${{ secrets.KENTIK_MACHINERY_PRIVATE_KEY }} + owner: ${{ github.repository_owner }}