test_ci/.gitea/workflows/build.yaml

20 lines
382 B
YAML
Raw Permalink Normal View History

2024-04-20 00:27:51 +08:00
name: Build docker image
on:
push:
tags:
2024-04-20 00:28:40 +08:00
- 'v*'
2024-04-20 00:27:51 +08:00
jobs:
publish_npm_packages:
runs-on: ubuntu-latest
steps:
- name: Hello world
2024-04-20 04:02:05 +08:00
id: ttttt
2024-04-20 04:06:35 +08:00
run: echo 'hello world'
- name: Hello world 2
id: my
2024-04-20 04:07:33 +08:00
run: echo 'a=xxxx' >> "$GITHUB_OUTPUT"
2024-04-20 04:02:05 +08:00
- name: Hello world
2024-04-20 04:06:35 +08:00
run: echo 'hello world' ${{ steps.my.outputs.a }}