Skip to content

Commit

Permalink
feat: debug only
Browse files Browse the repository at this point in the history
  • Loading branch information
dimzrio committed Jul 15, 2024
1 parent aca1e06 commit 7bc66d4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/debug.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7bc66d4

Please sign in to comment.