mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-23 22:02:34 +02:00
17 lines
405 B
YAML
17 lines
405 B
YAML
name: Docker Image CI
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*.*.*"
|
|
jobs:
|
|
build_and_push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get the version
|
|
uses: actions/checkout@v3
|
|
id: get_version
|
|
- name: Build and Push Container to ghcr.io
|
|
uses: GlueOps/github-actions-build-push-containers@v0.3.7
|
|
with:
|
|
tags: latest,${{ steps.get_version.outputs.VERSION }}
|