Strip HTML from pasted note content (fixes #490) #595
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Docker image | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
release: | |
types: | |
- created | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
- name: Install and Build | |
run: | | |
npm install | |
npm run build | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v1 | |
with: | |
install: true | |
- name: Builder instance name | |
run: echo ${{ steps.buildx.outputs.name }} | |
- name: Available platforms | |
run: echo ${{ steps.buildx.outputs.platforms }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: tag and push devel image | |
run: | | |
docker build --push \ | |
--tag ghcr.io/gramps-project/grampsweb:latest-devel \ | |
--platform linux/amd64,linux/arm/v7,linux/arm64 \ | |
-f Dockerfile.devel . | |
- name: Clean up dangling images | |
run: docker image prune -f -a | |
- name: tag and push release image | |
if: github.event_name == 'release' | |
run: | | |
docker build --push \ | |
--tag ghcr.io/gramps-project/grampsweb:${{ github.event.release.tag_name }} \ | |
--tag ghcr.io/gramps-project/grampsweb:latest \ | |
--platform linux/amd64,linux/arm/v7,linux/arm64 . | |
- name: Clean up dangling images | |
run: docker image prune -f -a | |
- name: tag and push devel nginx image | |
run: | | |
docker build --push \ | |
--tag ghcr.io/gramps-project/grampsjs:latest-devel \ | |
--platform linux/amd64,linux/arm/v7,linux/arm64 \ | |
-f Dockerfile.nginx . | |
- name: Clean up dangling images | |
run: docker image prune -f -a | |
- name: tag and push release nginx image | |
if: github.event_name == 'release' | |
run: | | |
docker build --push \ | |
--tag ghcr.io/gramps-project/grampsjs:${{ github.event.release.tag_name }} \ | |
--tag ghcr.io/gramps-project/grampsjs:latest \ | |
--platform linux/amd64,linux/arm/v7,linux/arm64 \ | |
-f Dockerfile.nginx . |