Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Delete .github/workflows/release.yaml

authored by

trueberryless and committed by
GitHub
00280819 90e7c8cb

-47
-47
.github/workflows/release.yaml
··· 1 - name: Release 2 - 3 - on: 4 - push: 5 - branches: [main] 6 - 7 - jobs: 8 - release: 9 - name: Release 10 - if: ${{ github.repository_owner == 'trueberryless-org' }} 11 - permissions: 12 - contents: write 13 - pull-requests: write 14 - runs-on: ubuntu-latest 15 - steps: 16 - - name: Generate GitHub App token 17 - id: generate_token 18 - uses: tibdex/github-app-token@v2.1.0 19 - with: 20 - app_id: ${{ secrets.BOT_APP_ID }} 21 - private_key: ${{ secrets.BOT_PRIVATE_KEY }} 22 - 23 - - name: Checkout Repo 24 - uses: actions/checkout@v4 25 - with: 26 - fetch-depth: 0 27 - 28 - - name: Setup PNPM 29 - uses: pnpm/action-setup@v3 30 - 31 - - name: Setup Node 32 - uses: actions/setup-node@v4 33 - with: 34 - node-version: 20 35 - cache: "pnpm" 36 - 37 - - name: Install Dependencies 38 - run: pnpm i 39 - 40 - - name: Create Release Pull Request 41 - uses: changesets/action@v1 42 - with: 43 - version: pnpm run version 44 - commit: "[ci] release" 45 - title: "[ci] release" 46 - env: 47 - GITHUB_TOKEN: ${{ steps.generate_token.outputs.token}}