Skip to content

Invert first name and last name in csv columns #105

Invert first name and last name in csv columns

Invert first name and last name in csv columns #105

Workflow file for this run

name: Build Docker Image
on:
push:
branches:
- "main"
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'docker/**'
- 'Dockerfile'
- '.dockerignore'
release:
types: [published]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
COMMIT_SHA: ${{github.sha}}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Log in to the Container registry
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@507c2f2dc502c992ad446e3d7a5dfbe311567a96
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
build-args: |
BUILD_COMMIT=$COMMIT_SHA
BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')