test_ci/.gitea/workflows/build.yaml
sealday 5d272e8088
All checks were successful
Build docker image / publish_npm_packages (push) Successful in 2s
b
2024-04-20 04:07:33 +08:00

20 lines
382 B
YAML

name: Build docker image
on:
push:
tags:
- 'v*'
jobs:
publish_npm_packages:
runs-on: ubuntu-latest
steps:
- name: Hello world
id: ttttt
run: echo 'hello world'
- name: Hello world 2
id: my
run: echo 'a=xxxx' >> "$GITHUB_OUTPUT"
- name: Hello world
run: echo 'hello world' ${{ steps.my.outputs.a }}