fix(ppc/leet-machine): 修复单词小写转换造成的问题 #3
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: Challenge 1337 Machine | |
on: | |
push: | |
branches: ["main", "ppc/leet-machine"] | |
paths: | |
- "!**/README.md" | |
- "challenges/ppc/leet_machine/build/**" | |
workflow_dispatch: | |
env: | |
TYPE: ppc | |
NAME: leet_machine | |
REGISTRY: ghcr.io | |
jobs: | |
challenge-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 }}/${{ env.NAME }} | |
tags: | | |
latest | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
context: challenges/${{ env.TYPE }}/${{ env.NAME }}/build | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
push: true |