Group widgets in generic.html and page_content_blocks.html #168
Workflow file for this run
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: CI/CD | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
killruana/jtremesay.org | |
tags: | | |
type=schedule | |
type=ref,event=branch | |
type=ref,event=pr | |
type=sha | |
- | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
# - | |
# name: Login to Docker Hub | |
# uses: docker/login-action@v2 | |
# with: | |
# username: killruana | |
# password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Build and push | |
uses: docker/build-push-action@v3 | |
with: | |
# push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
# cache-from: type=registry,ref=killruana/jtremesay.org:buildcache | |
# cache-to: type=registry,ref=killruana/jtremesay.org:buildcache,mode=max | |
# deploy: | |
# runs-on: ubuntu-latest | |
# needs: build | |
# if: github.ref == 'refs/heads/main' | |
# steps: | |
# - | |
# name: Deploy | |
# uses: distributhor/workflow-webhook@v3 | |
# with: | |
# webhook_url: ${{ secrets.WEBHOOK_URL }} | |
# verify_ssl: false |