Add semver update workflow to simplify releases #5
This file contains 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: coiled-login-action | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Coiled Login Action Prod | |
uses: ./ | |
with: | |
token: ${{ secrets.PROD_TEST_BOT_TOKEN }} | |
- name: Coiled Login Action Staging | |
uses: ./ | |
with: | |
token: ${{ secrets.STAGING_TEST_BOT_TOKEN }} | |
server: https://staging.coiledhq.com |