feat(shared-backend): ensure org/repo upsert in Netlify fn; action se… #11
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release GitHub Stats Action | |
| on: | |
| push: | |
| tags: | |
| - 'github-stats-action@*' | |
| workflow_dispatch: | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Create Release | |
| id: create_release | |
| uses: softprops/action-gh-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: ${{ github.ref_name }} | |
| name: GitHub Stats Action ${{ github.ref_name }} | |
| body: | | |
| Release of GitHub Stats Action | |
| Changes in this release: | |
| - See commit history for details | |
| draft: false | |
| prerelease: false | |
| files: | | |
| apps/shared-backend/github-actions/github-stats-action/action.yml | |
| apps/shared-backend/github-actions/github-stats-action/getStats.js | |
| apps/shared-backend/github-actions/github-stats-action/package.json |