Skip to content

update how to install geocompkg #122

update how to install geocompkg

update how to install geocompkg #122

Workflow file for this run

name: quarto
on:
schedule:
- cron: '0 05 * * 6' # everyday Sunday at 1am
push:
branches:
- 'master'
- 'main'
jobs:
docker:
runs-on: ubuntu-22.04
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Docker meta
id: meta
uses: docker/metadata-action@v3
with:
# list of Docker images to use as base name for tags
images: |
geocompr/geocompr
ghcr.io/geocompx/docker
# generate Docker tags based on the following events/attributes
tags: |
type=raw,value=quarto
type=sha,prefix=quarto_
type=schedule,pattern={{date 'YYYY-MM-DD'}},prefix=quarto_
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v2
with:
context: quarto
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}