Skip to content

Commit

Permalink
feat: ci: remove gorelease, create drafts and automate release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
galargh authored and rvagg committed Jul 15, 2024
1 parent 2a383f1 commit fdf829b
Show file tree
Hide file tree
Showing 7 changed files with 251 additions and 275 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
branches:
- master
- release/v*
- release/miner/v*
- releases
schedule:
- cron: '0 0 * * *'
Expand All @@ -29,7 +30,7 @@ permissions:

jobs:
docker:
name: Docker (${{ matrix.image }} / ${{ matrix.network }}) [publish=${{ inputs.publish == 'true' || github.event_name != 'pull_request' }}]
name: Docker (${{ matrix.image }} / ${{ matrix.network }}) [publish=${{ github.event.inputs.publish == 'true' || github.event_name != 'pull_request' }}]
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand All @@ -45,7 +46,7 @@ jobs:
- image: lotus
network: mainnet
env:
PUBLISH: ${{ inputs.publish == 'true' || github.event_name != 'pull_request' }}
PUBLISH: ${{ github.event.inputs.publish == 'true' || github.event_name != 'pull_request' }}
steps:
- id: channel
env:
Expand Down
Loading

0 comments on commit fdf829b

Please sign in to comment.