Leonardo Amaral
53667aba8d
Some checks failed
Build VMCli with PowerShell / Build-VMCli (push) Has been cancelled
Signed-off-by: Leonardo Amaral <contato@leonardoamaral.com.br>
57 lines
1.9 KiB
YAML
57 lines
1.9 KiB
YAML
name: Build VMCli with PowerShell
|
|
on: [push]
|
|
|
|
jobs:
|
|
Build-VMCli:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install docker
|
|
run: |
|
|
apt update
|
|
apt -y install curl ca-certificates
|
|
install -m 0755 -d /etc/apt/keyrings
|
|
curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
|
|
chmod a+r /etc/apt/keyrings/docker.asc
|
|
echo \
|
|
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
|
|
$(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
|
|
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
|
apt update
|
|
apt -y install docker-ce-cli docker-buildx-plugin docker-compose-plugin
|
|
|
|
- name: Clone Repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
# Someday.... https://github.com/go-gitea/gitea/issues/23642
|
|
# username: ${{ gitea.repository_owner }}
|
|
# password: ${{ secrets.GITEA_TOKEN}}
|
|
username: ${{ vars.PAT_USER }}
|
|
password: ${{ secrets.PAT_TOKEN}}
|
|
registry: git.leonardoamaral.com.br
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
cache-from: type=local,src=/tmp/.buildx-cache
|
|
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
|
|
context: .
|
|
file: ./Containerfile
|
|
platforms: linux/amd64
|
|
push: true
|
|
tags: git.leonardoamaral.com.br/leonardo/vmcli-powershell-container
|
|
|
|
- name: Move cache
|
|
run: |
|
|
rm -rf /tmp/.buildx-cache
|
|
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
|
|
|