Skip to content

feat: add ability to upload files by pasting them from clipboard (#637) #73

feat: add ability to upload files by pasting them from clipboard (#637)

feat: add ability to upload files by pasting them from clipboard (#637) #73

name: Build and publish dev image
on:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
-
name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Get tag
id: repository
run: echo "tag=$(git describe --tags HEAD)" > $GITHUB_ENV
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Log in 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@v3
with:
context: .
file: docker/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: |
chibisafe/chibisafe:dev
ghcr.io/chibisafe/chibisafe:dev
-
name: Build and push
uses: docker/build-push-action@v3
with:
context: .
file: docker/DockerfileServer
platforms: linux/amd64,linux/arm64
push: true
tags: |
chibisafe/chibisafe-server:dev
ghcr.io/chibisafe/chibisafe-server:dev