2022-02-17 04:36:26 +00:00
|
|
|
name: Release
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "*"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
setup:
|
2022-04-01 06:27:15 +00:00
|
|
|
if: github.event.base_ref == 'refs/heads/master'
|
2022-02-17 04:36:26 +00:00
|
|
|
name: Setup
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
tag: ${{ steps.get_tag.outputs.tag }}
|
|
|
|
steps:
|
|
|
|
- name: Get tag
|
|
|
|
id: get_tag
|
2022-02-17 04:59:24 +00:00
|
|
|
run: echo ::set-output name=tag::${GITHUB_REF/refs\/tags\//}
|
2022-02-17 04:36:26 +00:00
|
|
|
|
|
|
|
create-release:
|
|
|
|
name: Create release
|
|
|
|
needs:
|
|
|
|
- setup
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
|
|
|
steps:
|
|
|
|
- name: Create release
|
|
|
|
id: create_release
|
|
|
|
uses: actions/create-release@v1
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
|
|
|
tag_name: ${{ needs.setup.outputs.tag }}
|
|
|
|
release_name: Video2X ${{ needs.setup.outputs.tag }}
|
|
|
|
draft: true
|
|
|
|
prerelease: false
|
|
|
|
|
|
|
|
container:
|
|
|
|
name: Build and upload container
|
2022-04-01 06:23:46 +00:00
|
|
|
needs:
|
|
|
|
- setup
|
|
|
|
- create-release
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- uses: mr-smithers-excellent/docker-build-push@v5
|
|
|
|
name: Build & push the Docker image
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: ${{ secrets.GHCR_USER }}
|
|
|
|
password: ${{ secrets.GHCR_TOKEN }}
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
image: video2x
|
|
|
|
tags: latest, ${{ needs.setup.outputs.tag }}
|