osic-stacks/.gitea/workflows/release.yml
Mario Romero d2c7a2f794
Some checks failed
release / dockerbuild (push) Failing after 1m21s
Change on push baranch for testing
2023-09-22 01:28:17 +00:00

29 lines
725 B
YAML

name: release
on:
push:
branches: [ cicd ]
jobs:
dockerbuild:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Authentication
uses: docker/login-action@v2
with:
registry: git.1159.cl
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build desktop base
uses: docker/build-push-action@v4
env:
ACTIONS_RUNTIME_TOKEN: '' # See https://gitea.com/gitea/act_runner/issues/119
with:
push: true
tags: git.1159.cl/mario1159/osicstacks-base-desktop:latest
context: .
file: ./base/desktop.Dockerfile