Docker #600
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
# SPDX-FileCopyrightText: 2024 Emulsion contributors <https://github.com/codingteam/emulsion> | |
# | |
# SPDX-License-Identifier: MIT | |
name: Docker | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- master | |
schedule: | |
- cron: '0 0 * * 6' # every Saturday | |
jobs: | |
publish: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Clone the repository | |
uses: actions/checkout@v4 | |
- name: Read version from ref | |
id: version | |
shell: pwsh | |
run: echo "version=$(./scripts/Get-Version.ps1 -RefName $env:GITHUB_REF)" >> $env:GITHUB_OUTPUT | |
- name: Login to Docker Hub | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and Push Docker Images | |
uses: docker/build-push-action@v6 | |
with: | |
tags: codingteam/emulsion:latest,codingteam/emulsion:v${{ steps.version.outputs.version }} | |
push: ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags/') && 'true' || 'false' }} |