krz/devianter

A DeviantArt guest API library for Go.

clone: git clone https://gitbay.org/krz/devianter.git

v0.3.2: .github/workflows/release.yml · raw

 1name: Release
 2
 3on:
 4  push:
 5    tags:
 6      - 'v*'
 7
 8permissions:
 9  contents: write
10
11jobs:
12  release:
13    runs-on: ubuntu-latest
14    steps:
15      - uses: actions/checkout@v7
16      - name: Create Release
17        uses: elgohr/Github-Release-Action@v5
18        env:
19          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20        with:
21          title: Release ${{ github.ref }}
22          tag: ${{ github.ref }}
23          prerelease: false