chore: update

This commit is contained in:
zizifn
2020-12-13 17:03:51 +08:00
committed by zizifn3
parent 12cb880175
commit 9771131702
5 changed files with 54 additions and 1 deletions

21
.github/workflows/shell.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: shell-test
on:
workflow_dispatch:
branches:
- main
jobs:
shell-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run a multi-line script
run: |
echo "Run a multi-line script"
- id: foo
uses: actions/hello-world-composite-run-steps-action@v1
with:
who-to-greet: 'Mona the Octocat'
- run: echo random-number ${{ steps.foo.outputs.random-number }}
shell: bash