docker-filebin/.forgejo/workflows/build.yaml
Varakh 3ffd19499e
All checks were successful
/ build (push) Successful in 1m37s
chore(pipeline): update executor image
2024-12-13 20:51:58 +01:00

33 lines
1,007 B
YAML

on: [ push ]
env:
FB_VERSION: 4.0.2
REVISION: ${{ github.sha }}
IMAGE_TAG: varakh/filebin
VERSION_MAJOR: 4
VERSION_MINOR: 0
VERSION_PATCH: 2
jobs:
build:
runs-on: docker
container:
image: git.myservermanager.com/msm/executor-alpine:latest
steps:
- uses: actions/checkout@v3
name: Clone
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_KEY }}
- name: Build docker image
uses: docker/build-push-action@v4
with:
build-args: FB_VERSION=${{ env.FB_VERSION }}
push: false
tags: |
${{ env.IMAGE_TAG }}:${{ github.sha }}