Some checks are pending
Release Binaries / Build and Release (.exe, amd64, windows, windows-amd64) (push) Waiting to run
Release Binaries / Build and Release (amd64, darwin, darwin-amd64) (push) Waiting to run
Release Binaries / Build and Release (amd64, linux, linux-amd64) (push) Waiting to run
Release Binaries / Build and Release (arm64, darwin, darwin-arm64) (push) Waiting to run
Release Binaries / Build and Release (arm64, linux, linux-arm64) (push) Waiting to run
🤖 Generated with [Qoder][https://qoder.com]
23 lines
447 B
YAML
23 lines
447 B
YAML
run-name: build ushare docker image
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: debian
|
|
steps:
|
|
- name: prepare environment
|
|
uses: actions/checkout@v4
|
|
|
|
- name: print info
|
|
run: |
|
|
date '+%Y-%m-%dT%H:%M:%S'
|
|
whoami
|
|
echo "Tag = ${{ gitea.ref_name }}"
|
|
pwd && ls -alsh .
|
|
|
|
- name: build docker image
|
|
run: docker build -t ushare:${{ gitea.ref_name }} .
|