Skip to content

Merge pull request #4 from CMCC-Foundation/update_workflows #1

Merge pull request #4 from CMCC-Foundation/update_workflows

Merge pull request #4 from CMCC-Foundation/update_workflows #1

name: Build on release a geokube Docker image and push to the geokube container registry
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get release tag
run: echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install WHEEL tool
run: pip install wheel
- name: Build WHEEL file
run: python setup.py bdist_wheel
- name: Login to Scaleway Container Registry
uses: docker/login-action@v2
with:
username: nologin
password: ${{ secrets.SCALEWAY_PASSWORD }}
registry: ${{ vars.GEOKUBE_REGISTRY }}
- name: Set up Docker Buildx
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: |
${{ vars.GEOKUBE_REGISTRY }}/geokube:${{ env.TAG }}