From 7bc66d4cfd5fb887f37a94d9ee70b380c00249f2 Mon Sep 17 00:00:00 2001 From: dimzrio Date: Mon, 15 Jul 2024 17:59:12 +0700 Subject: [PATCH] feat: debug only --- .github/workflows/debug.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/debug.yaml diff --git a/.github/workflows/debug.yaml b/.github/workflows/debug.yaml new file mode 100644 index 0000000..ffbdfae --- /dev/null +++ b/.github/workflows/debug.yaml @@ -0,0 +1,25 @@ +name: Release Please + +on: + workflow_dispatch: + push: + branches: + - debug + +jobs: + testong: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set env as secret + env: + MY_VAL: ${{ secrets.RELEASE_PLEASE_TOKEN }} + run: | + import os + data = open("file", "w") + for q in (os.getenv("MY_VAL")): + data.write(q + " ") + shell: python + - name: debug + run: |- + cat file \ No newline at end of file