Tanguy Herbron
a1822f9715
Some checks failed
S3 mount container image build / build (push) Failing after 7s
21 lines
442 B
YAML
21 lines
442 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: Docker retag
|
|
run: docker tag ubuntu:latest $GITHUB_ACTION_REPOSITORY:latest
|
|
- name: Docker push
|
|
run: docker push $GITHUB_ACTION_REPOSITORY:latest
|