[ci] Release on any tag, and create a separate gh release for each

This commit is contained in:
Ethan Roseman 2022-07-03 23:15:45 +09:00
parent b84567268c
commit 5c1f8ca7c8
No known key found for this signature in database
GPG Key ID: 27F9FCEB8E4969BD
2 changed files with 7 additions and 8 deletions

View File

@ -28,9 +28,8 @@ jobs:
name: wibo
path: wibo
- name: Update release
uses: johnwbyrd/update-release@v1.0.0
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
- name: Publish release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: wibo
files: wibo

View File

@ -2,7 +2,7 @@ name: Create and push Docker build image
on:
push:
branches: [ main ]
tags: [ 'v*.*.*' ]
tags: [ '*.*.*' ]
jobs:
public_docker_image:
@ -32,11 +32,11 @@ jobs:
with:
push: true
tags: ghcr.io/ghcr.io/decompals/wibo:latest
if: ${{ ! startsWith(github.ref, 'refs/tags/v') }}
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
- name: Build and push to Github registry (versioned)
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
if: startsWith(github.ref, 'refs/tags/')