forked from FuroBath/ArtifacterImageGen
-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (39 loc) · 1.2 KB
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Build and Publish Docker
on:
workflow_dispatch:
jobs:
build_and_push:
runs-on: ubuntu-latest
env:
IMAGE_NAME: artifacter
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Build cross platform
uses: neodyland/rust-ci@e16725b7d7e2cad63c9b4316017d73bf2f5cf518
with:
package: artifacter,api
install-rustup: false
install-openssl: true
cache: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- name: Build and push
uses: docker/build-push-action@v4
with:
platforms: linux/amd64,linux/arm64
context: .
push: true
tags: |
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:latest
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ github.sha }}