S3-Mounter/.gitea/workflows/container-build.yaml
Tanguy Herbron 812478af7a
Some checks failed
S3 mount container image build / build (push) Failing after 9s
pipeline runner
2023-08-05 11:34:59 +02:00

23 lines
478 B
YAML

name: S3 mount container image build
on:
release:
types: [published]
push:
workflow_dispatch:
jobs:
build:
container:
image: docker:latest
runs-on: [arm64]
steps:
- name: Docker pull
run: docker pull ubuntu:latest
- name: Var envs
run: export
- name: Docker retag
run: docker tag ubuntu:latest $GITHUB_REPOSITORY:latest
- name: Docker push
run: docker push $GITHUB_ACTION_REPOSITORY:latest