Skip to content

Updated sample docker-compose and remove excemption from watchtower, … #39

Updated sample docker-compose and remove excemption from watchtower, …

Updated sample docker-compose and remove excemption from watchtower, … #39

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