fix: fix id param error #18
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: build-and-push | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
paths-ignore: | |
- 'README.md' | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build dist | |
run: | | |
pnpm install --frozen-lockfile | |
pnpm run build | |
- name: Build img and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: tsingper/simple-space:latest |