Skip to content

Add separate FROST http endpoint URL for the pre-fetch of observation… #46

Add separate FROST http endpoint URL for the pre-fetch of observation…

Add separate FROST http endpoint URL for the pre-fetch of observation… #46

Workflow file for this run

name: Build
on:
push:
branches:
- main
- stable
tags:
- v*
env:
REGISTRY: bikenow.vkw.tu-dresden.de
IMAGE_NAME: ${{ github.repository }}
jobs:
test:
uses: ./.github/workflows/test.yaml
with:
branch: ${{ github.ref }}
publish:
needs: test
runs-on: ubuntu-latest
container: docker:latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.NEXUS_DOCKER_PUB_USERNAME }}
password: ${{ secrets.NEXUS_DOCKER_PUB_PASSWORD }}
- name: Extract metadata (tags, labels) for Docker
id: meta
# See: https://github.com/docker/metadata-action
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}