Skip to content

feat: sync card archive status #52

feat: sync card archive status

feat: sync card archive status #52

Workflow file for this run

name: Docker Image CI
on:
push:
tags:
- '*'
env:
REGISTRY: ghcr.io
IMAGE_NAME: xinrea/joiask
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Prepare Docker
uses: docker/login-action@v1.14.1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build the Docker image
run: |
docker build -t ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} .
docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}