Skip to content

SQLite support + Other improvements and fixes #12

SQLite support + Other improvements and fixes

SQLite support + Other improvements and fixes #12

Workflow file for this run

name: Docker Image CI
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/circled-server:latest,${{ secrets.DOCKERHUB_USERNAME }}/circled-server:${{ github.ref_name }}
build-args: VERSION=${{ github.ref_name }}