From 4719192aee19b3cc525667e697d3af2ab391355e Mon Sep 17 00:00:00 2001 From: ASAKURA Kazuki <32762324+Arthur1@users.noreply.github.com> Date: Tue, 27 Dec 2022 18:35:52 +0900 Subject: [PATCH] invalid ci sample --- .github/workflows/ci-sample.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci-sample.yml diff --git a/.github/workflows/ci-sample.yml b/.github/workflows/ci-sample.yml new file mode 100644 index 0000000..dead217 --- /dev/null +++ b/.github/workflows/ci-sample.yml @@ -0,0 +1,16 @@ +on: + push: + branches: + - main + +name: invalid ci +jobs: + sample: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - id: poyo + name: set output + run: echo "::set-output name=greet::hello_world" + - name: echo output + run: echo "${{ steps.poyo.outputs.greet }}"