mirror of
https://github.com/decompals/wibo.git
synced 2025-09-17 16:49:50 +00:00
[ci] Release on any tag, and create a separate gh release for each
This commit is contained in:
parent
b84567268c
commit
5c1f8ca7c8
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
@ -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
|
||||
|
6
.github/workflows/docker.yaml
vendored
6
.github/workflows/docker.yaml
vendored
@ -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/')
|
||||
|
Loading…
x
Reference in New Issue
Block a user