Use int64_t instead of intmax_t for compatibility #5
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: RyJSON | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- docker/ryjson/Dockerfile | |
- apps/ryjson1/** | |
- .github/workflows/cryjson.yml # Self-trigger | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: doganulus/ryjson | |
VERSION: latest | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log in to the registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push image | |
uses: docker/build-push-action@v4 | |
with: | |
context: docker/ryjson | |
build-args: | | |
VERSION=${{ env.VERSION }} | |
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }} | |
push: true | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |