line 문제인가2 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |