Updated sample docker-compose and remove excemption from watchtower, … #39
Workflow file for this run
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: Deploy Images to GHCR | |
# env: | |
# DOTNET_VERSION: '6.0.x' | |
on: | |
push: | |
branches: [ "main" ] | |
tags: ["v[0-9]+.[0-9]+.[0-9]*"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
# outputs: | |
# new_tag: ${{ steps.setversion.outputs.new_tag }} | |
defaults: | |
run: | |
working-directory: '.' | |
steps: | |
- name: 'Checkout GitHub Action' | |
uses: actions/checkout@main | |
- name: 'Login to GitHub Container Registry' | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{github.actor}} | |
password: ${{secrets.GITHUB_TOKEN}} | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: '0' | |
- name: Bump version and push tag | |
uses: anothrNick/[email protected] | |
id: setversion | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WITH_V: true | |
- name: "Build, Tag, and push the Docker image" | |
env: | |
IMAGE_NAME: ghcr.io/manimatter/decluttarr | |
IMAGE_TAG: ${{ steps.setversion.outputs.new_tag }} | |
run: | | |
docker build -f docker/Dockerfile -t $IMAGE_NAME:$IMAGE_TAG . | |
docker push $IMAGE_NAME:$IMAGE_TAG | |
- name: "Build, Tag, and push the Docker image" | |
env: | |
IMAGE_NAME: ghcr.io/manimatter/decluttarr | |
IMAGE_TAG: latest | |
run: | | |
docker build -f docker/Dockerfile -t $IMAGE_NAME:$IMAGE_TAG . | |
docker push $IMAGE_NAME:$IMAGE_TAG |