Skip to content

Commit

Permalink
fix: .env 의존성 버그 수정 4차 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
i3kae authored Nov 12, 2024
1 parent e252260 commit c8ef62d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,13 @@ jobs:
uses: actions/checkout@v3

- name: .env setting
run: echo "REGISTRY_TOKEN=${{ secrets.REGISTRY_TOKEN }}" > ./.env
run: |
touch .env
echo "REGISTRY_TOKEN=${{ secrets.REGISTRY_TOKEN }}" > .env
- name: ls test
run: ls -la

- name: Setup Node.js
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit c8ef62d

Please sign in to comment.