Skip to content

Commit f948f55

Browse files
ci: update release.yaml
1 parent 2b7f08c commit f948f55

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed

.github/workflows/release.yaml

Lines changed: 8 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
1-
name: Release
1+
---
2+
name: "release"
23

34
on:
45
push:
56
tags:
6-
- 'v*'
7+
- "v*"
78

89
jobs:
10+
tagged-release:
11+
name: "Release"
12+
runs-on: "ubuntu-latest"
913

10-
build:
11-
runs-on: ubuntu-latest
1214
steps:
13-
- uses: actions/checkout@v3
14-
- name: release
15-
uses: actions/create-release@v1
16-
id: create_release
15+
- uses: "marvinpinto/action-automatic-releases@latest"
1716
with:
18-
draft: false
17+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
1918
prerelease: false
20-
release_name: Release ${{ github.ref }}
21-
tag_name: ${{ github.ref }}
22-
body : |
23-
This is an automated release, see [the changelog](https://github.com/marcelblijleven/adventofcode/blob/master/CHANGELOG.md) for changes
24-
env:
25-
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)