Skip to content

v1.0.0

Latest
Compare
Choose a tag to compare
@andycarrell andycarrell released this 05 Mar 21:44
7314758

First release!

This marks the first release - reference this specific version in your github action.

Example usage

name: Deploy
on: deployment

jobs:
  deploy:
    name: Build & deploy
    runs-on: ubuntu-latest
    steps:
      - name: Run build
        runs: # Build script
      - name: Run deploy
        runs: # Deploy script
      - name: Add status check
        uses:  uses: JasperLabs/actions-github-check@v1
        with:
          name: deployed-to-production
          token: ${{ github.token }}