Skip to content

(feature): support viber and proxy #30

(feature): support viber and proxy

(feature): support viber and proxy #30

Workflow file for this run

name: Build and Push Docker Image
on:
push:
tags: [ "v*" ]
jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: |
ghcr.io/versuscontrol/versus-incident:latest
ghcr.io/versuscontrol/versus-incident:${{ github.ref_name }}