Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

[Auto Generation] Adding new release version #200

[Auto Generation] Adding new release version

[Auto Generation] Adding new release version #200

name: velero-gcp-plugin
on:
push:
paths:
- '.github/workflows/velero-gcp-plugin.yml'
- 'build/velero-gcp-plugin/**'
- '!build/velero-gcp-plugin/*.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Prepare
id: prep
run: |
BASE_DIR=build/velero-gcp-plugin
VERSION=$(cat ${BASE_DIR}/.version)
echo ::set-output name=version::${VERSION}
echo ::set-output name=base_dir::${BASE_DIR}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
install: true
version: latest
- name: Login to DockerHubs
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build and Push
if: github.ref != 'refs/heads/main'
uses: docker/build-push-action@v2
with:
build-args: VERSION=${{ steps.prep.outputs.version }}
context: ${{ steps.prep.outputs.base_dir }}/
file: ${{ steps.prep.outputs.base_dir }}/Dockerfile
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: |
raspbernetes/velero-gcp-plugin:${{ github.sha }}
- name: Build and Push
if: github.ref == 'refs/heads/main'
uses: docker/build-push-action@v2
with:
build-args: VERSION=${{ steps.prep.outputs.version }}
context: ${{ steps.prep.outputs.base_dir }}/
file: ${{ steps.prep.outputs.base_dir }}/Dockerfile
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: |
raspbernetes/velero-gcp-plugin:latest
raspbernetes/velero-gcp-plugin:${{ steps.prep.outputs.version }}