Skip to content

avoid panic when jsonMap["paid"] is not bool #39

avoid panic when jsonMap["paid"] is not bool

avoid panic when jsonMap["paid"] is not bool #39

Workflow file for this run

name: Docker build & push
on:
push:
tags:
- '*'
jobs:
build:
env:
REGISTRY: ghcr.io
IMAGENAME: ${{ github.event.repository.name }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Check out code
- name: Docker build
uses: mr-smithers-excellent/docker-build-push@v6.3
id: build
with:
image: ${{ env.IMAGENAME }}
registry: ${{ env.REGISTRY }}
multiPlatform: true
platform: linux/amd64,linux/arm64
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}