Skip to content

Remove automatic releases (#5) #6

Remove automatic releases (#5)

Remove automatic releases (#5) #6

Workflow file for this run

name: "Publish versioned artifacts"
on:
push:
tags: v*
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v6
with:
push: true
tags: |
nextroll/ecs-ship:v1
nextroll/ecs-ship:v1.2
nextroll/ecs-ship:v1.2.1
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}