mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
Merge pull request #338 from crystal-ameba/Sija/build-and-push-docker-images-to-ghcr
Build and push Docker images to GHCR
This commit is contained in:
commit
89f995f211
2 changed files with 77 additions and 3 deletions
74
.github/workflows/cd.yml
vendored
Normal file
74
.github/workflows/cd.yml
vendored
Normal file
|
@ -0,0 +1,74 @@
|
|||
name: Docker image build and deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
release:
|
||||
types: [published]
|
||||
|
||||
env:
|
||||
# Use docker.io for Docker Hub if empty
|
||||
REGISTRY: ghcr.io
|
||||
# github.repository as <account>/<repo>
|
||||
IMAGE_NAME: ${{ github.repository }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
# This is used to complete the identity challenge
|
||||
# with sigstore/fulcio when running outside of PRs.
|
||||
id-token: write
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
|
||||
- name: Setup Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
# Login against a Docker registry except on PR
|
||||
# https://github.com/docker/login-action
|
||||
- name: Log into ${{ env.REGISTRY }} registry
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
# Extract metadata (tags, labels) for Docker
|
||||
# https://github.com/docker/metadata-action
|
||||
- name: Extract Docker metadata
|
||||
id: meta
|
||||
uses: docker/metadata-action@v4
|
||||
with:
|
||||
images: |
|
||||
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||
tags: |
|
||||
type=ref,event=tag
|
||||
type=ref,event=branch
|
||||
type=ref,event=pr
|
||||
type=sha,format=long
|
||||
type=semver,pattern={{version}}
|
||||
type=semver,pattern={{major}}.{{minor}}
|
||||
|
||||
# Build and push Docker image with Buildx
|
||||
# https://github.com/docker/build-push-action
|
||||
- name: Build and push Docker image
|
||||
id: build-and-push
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
platforms: |
|
||||
linux/amd64
|
||||
linux/arm64
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
|
@ -162,16 +162,16 @@ $ brew install ameba
|
|||
Build the image:
|
||||
|
||||
```sh
|
||||
$ docker build -t crystal-ameba/ameba .
|
||||
$ docker build -t ghcr.io/crystal-ameba/ameba .
|
||||
```
|
||||
|
||||
To use the resulting image on a local source folder, mount the current (or target) directory into `/src`:
|
||||
|
||||
```sh
|
||||
$ docker run -v $(pwd):/src crystal-ameba/ameba
|
||||
$ docker run -v $(pwd):/src ghcr.io/crystal-ameba/ameba
|
||||
```
|
||||
|
||||
Also available on DockerHub: https://hub.docker.com/r/veelenga/ameba
|
||||
Also available on GitHub: https://github.com/crystal-ameba/ameba/pkgs/container/ameba
|
||||
|
||||
### From sources
|
||||
|
||||
|
|
Loading…
Reference in a new issue