Skip to content

line 문제인가2

line 문제인가2 #8

Workflow file for this run

name: hello
on:
push
jobs:
test:
name: why name again?
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: why
run: ls
- name: make text file
run: echo "good with tags" >> by_the_test_action.txt
- name: maybe new line?
run: |
echo "good with lines" >> by_the_test_action2.txt
echo "good with lines 2" >> by_the_test_action2.txt
- name: maybe env
env:
Vault_Token: ${{ secrets.VAULT_TOKEN }}
run: echo "${GITHUB_REF#refs/tags/} and ${{env.Vault_Token}}" >> from_env.txt