lapdev-docker/.github/workflows/container.yml

36 lines
981 B
YAML

name: Release
on:
workflow_dispatch:
inputs:
version:
description: "Enter the version to build"
required: true
default: "0.1.0"
env:
GITHUB_TOKEN: ${{ secrets.PACKAGE_TOKEN }}
jobs:
linux:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Login to Self-Hosted Registry
uses: docker/login-action@v3
with:
registry: git.myco.systems
username: ${{ secrets.MYCO_REGISTRY_USER }}
password: ${{ secrets.MYCO_PERSONAL_ACCESS_TOKEN }}
- name: Build and Push Extended Version
uses: docker/build-push-action@v4
with:
builder: ${{ steps.buildx.outputs.name }}
context: ./
file: ./Dockerfile
platforms: linux/amd64
push: true
build-args: |
LAP_VER=${{ github.event.inputs.version }}
tags: |
fung.uy/mycosystems/lapdev:${{ github.event.inputs.version }}