Skip to content

Commit

Permalink
ci(misc/wireworld): 添加基础镜像工作流文件
Browse files Browse the repository at this point in the history
  • Loading branch information
13m0n4de committed Oct 20, 2024
1 parent 1e28895 commit 9030303
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/base.wireworld.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Base Wireworld

on:
push:
branches: ["main", "misc/wireworld"]
paths:
- "!**/README.md"
- "base/wireworld/**"
workflow_dispatch:

env:
NAME: wireworld
REGISTRY: ghcr.io

jobs:
base-build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ github.repository }}/base_${{ env.NAME }}
tags: |
latest
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: base/${{ env.NAME }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true

0 comments on commit 9030303

Please sign in to comment.