Skip to content

chore: bump svelte from 4.2.18 to 4.2.19 #205

chore: bump svelte from 4.2.18 to 4.2.19

chore: bump svelte from 4.2.18 to 4.2.19 #205

name: PUBLISH_DOCKER
on:
push:
branches:
- main
tags:
- 'v[0-9]+.*'
jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Set publish tag
run: |
if [[ '${{ github.ref }}' = refs/tags/v* ]]; then
PUBLISH_TAG=latest
else
PUBLISH_TAG=next
fi
echo "Using tag $PUBLISH_TAG"
echo "PUBLISH_TAG=$PUBLISH_TAG" >> $GITHUB_ENV
- name: Build and push
id: docker_build
uses: docker/build-push-action@v5
with:
context: ./
file: ./support/docker/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/wuffle:${{ env.PUBLISH_TAG }}
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}