34 lines
1003 B
YAML
34 lines
1003 B
YAML
|
name: Build Docker Image
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout repository
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- name: Set up Docker Buildx
|
||
|
uses: docker/setup-buildx-action@v1
|
||
|
|
||
|
- name: Read current version
|
||
|
id: get_version
|
||
|
run: echo "current_version=$(cat VERSION)" >> $GITHUB_ENV
|
||
|
|
||
|
- name: Log in to Gitea Docker Registry
|
||
|
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login https://gitea.suda.codes -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
|
||
|
|
||
|
- name: Build and push Docker image
|
||
|
uses: docker/build-push-action@v2
|
||
|
with:
|
||
|
context: .
|
||
|
push: true
|
||
|
tags: |
|
||
|
gitea.suda.codes/sudacode/mpv-youtube-queue-server:${{ env.current_version }}
|
||
|
gitea.suda.codes/sudacode/mpv-youtube-queue-server:latest
|
||
|
|
||
|
- name: Log out from Gitea Docker Registry
|
||
|
run: docker logout https://gitea.suda.codes
|