Skip to content

Use correct matthiasluedtke/iconserver #4

Use correct matthiasluedtke/iconserver

Use correct matthiasluedtke/iconserver #4

Workflow file for this run

# github action to Build and publish Docker image
name: Docker
on:
push:
branches: [ master ]
jobs:
build:
name: Build
environment: besticon-docker
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: go get github.com/mat/besticon/...
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Docker image
run: docker build --platform=linux/amd64 -t matthiasluedtke/iconserver:latest .
- name: Push Docker image
run: docker push matthiasluedtke/iconserver:latest