...

Text file src/github.com/alecthomas/chroma/v2/.github/workflows/release.yml

Documentation: github.com/alecthomas/chroma/v2/.github/workflows

     1name: Release
     2on:
     3  push:
     4    tags:
     5      - 'v*'
     6jobs:
     7  release:
     8    name: Release
     9    runs-on: ubuntu-latest
    10    steps:
    11    - uses: actions/checkout@v2
    12      with:
    13        fetch-depth: 0
    14    - run: ./bin/hermit env --raw >> $GITHUB_ENV
    15    - run: goreleaser release
    16      env:
    17        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View as plain text