AB#37216: Fix horizontal overflow error on large terminal route lists… #126
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish Docker Hub dev image | |
on: | |
push: | |
branches: | |
- 'development' | |
jobs: | |
build-container: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.KARTAT_DOCKERHUB_USER }} | |
password: ${{ secrets.KARTAT_DOCKERHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: hsldevcom/hsl-map-publisher | |
- name: Get commit hash | |
id: commit_hash | |
run: echo "hash=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_OUTPUT | |
- name: Get image timestamp | |
id: timestamp | |
run: echo "timestamp=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT | |
- name: Build and push timestamped tag | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
push: true | |
tags: ${{ format('hsldevcom/hsl-map-publisher:dev-{0}-{1}', steps.timestamp.outputs.timestamp, steps.commit_hash.outputs.hash) }} | |
build-args: | | |
BUILD_ENV=dev | |
DIGITRANSIT_APIKEY=${{ secrets.KARTAT_DIGITRANSITAPIKEY_DEV }} | |
- name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
push: true | |
tags: hsldevcom/hsl-map-publisher:dev | |
build-args: | | |
BUILD_ENV=dev | |
DIGITRANSIT_APIKEY=${{ secrets.KARTAT_DIGITRANSITAPIKEY_DEV }} |