Skip to content

chore: push image to ghcr, too #2

chore: push image to ghcr, too

chore: push image to ghcr, too #2

Workflow file for this run

name: Build and Publish Docker Container
on:
push:
branches:
- main
- docker_container
# pull_request:
# branches:
# - main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
environment:
name: Production
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
freqtradeorg/frequi:latest
ghcr.io/freqtrade/frequi:latest