Merge pull request #97 from openzim/do_not_index_user_pages #65
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: Docker | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
jobs: | |
build-and-push: | |
name: Deploy Docker Image | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Retrieve the source code | |
uses: actions/[email protected] | |
- name: Build and push | |
uses: openzim/docker-publish-action@v10 | |
with: | |
image-name: openzim/ifixit | |
on-master: dev | |
tag-pattern: /^v([0-9.]+)$/ | |
latest-on-tag: true | |
restrict-to: openzim/ifixit | |
registries: ghcr.io | |
credentials: | |
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }} | |
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }} | |
repo_description: auto | |
repo_overview: auto |