mirror of
https://github.com/freckle/yesod-auth-oauth2.git
synced 2026-01-12 04:08:30 +01:00
23 lines
452 B
YAML
23 lines
452 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
branches: main
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- id: tag
|
|
uses: freckle/haskell-tag-action@v1
|
|
|
|
- if: steps.tag.outputs.tag
|
|
run: stack upload --pvp-bounds lower .
|
|
env:
|
|
HACKAGE_KEY: ${{ secrets.HACKAGE_UPLOAD_API_KEY }}
|
|
|
|
# Use minimum LTS to set lowest lower bounds
|
|
STACK_YAML: stack-lts-16.31.yaml
|