Update docker.io/tootsuite/mastodon Docker tag to v4.2.13 #35
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 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-push-docker-image: | |
name: Build Docker image and push to GHCR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Github Packages | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Get Mastodon tags | |
id: mastodon-tag | |
run: | | |
tag=$(grep FROM Dockerfile | cut -c 35-40) | |
echo "TAG=$tag" >> $GITHUB_OUTPUT | |
- name: Build image and push to GitHub Container Registry | |
uses: docker/build-push-action@v6 | |
with: | |
tags: | | |
ghcr.io/appuio/mastodon-openshift/mastodon:latest | |
ghcr.io/appuio/mastodon-openshift/mastodon:${{ steps.mastodon-tag.outputs.TAG }} | |
push: true | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} |