https://github.com/brdgm/github-action-release
GitHub Action
https://github.com/brdgm/github-action-release
Last synced: 4 months ago
JSON representation
GitHub Action
- Host: GitHub
- URL: https://github.com/brdgm/github-action-release
- Owner: brdgm
- License: apache-2.0
- Created: 2024-05-03T19:53:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-11-20T16:49:25.000Z (7 months ago)
- Last Synced: 2025-11-20T18:24:31.770Z (7 months ago)
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
github-action-release
======
Composite GitHub Action to release and deploy a brdgm.me application.
Usage example:
```yaml
name: Release and Deploy
on:
workflow_dispatch:
permissions:
contents: read
jobs:
release:
runs-on: ubuntu-latest
environment:
name: Production
url: "https://brdgm.me/${{ steps.release.outputs.app-deploy-name }}"
permissions:
contents: write
pull-requests: read
steps:
- uses: brdgm/github-action-release@v2
id: release
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
gh-site-deploy-pat: ${{ secrets.GH_SITE_DEPLOY_PAT }}
gh-site-deploy-username: ${{ secrets.GH_SITE_DEPLOY_USERNAME }}
gh-site-deploy-email: ${{ secrets.GH_SITE_DEPLOY_EMAIL }}
gh-site-deploy-name: ${{ secrets.GH_SITE_DEPLOY_NAME }}
```