Skip to content

Commit

Permalink
ci: trying to fix key
Browse files Browse the repository at this point in the history
  • Loading branch information
dd84ai committed Feb 26, 2024
1 parent 06b7704 commit 1c18b78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
- name: Check out source repository
uses: actions/checkout@v2

- run: echo "{{ secrets.FL_DATA_KEY }}" > id_rsa.fl-data
- run: chmod 400 id_rsa.fl-data
- run: echo "{{ secrets.FL_DATA_KEY }}" > {{ github.workspace }}/id_rsa
- run: chmod 400 {{ github.workspace }}/id_rsa

- uses: actions/checkout@v4
with:
repository: 'darklab8/fl-data'
path: 'fl-data'
ssh-key: 'id_rsa.fl-data'
ssh-key: '{{ github.workspace }}/id_rsa'

- run: ls ./fl-data
# - name: Set up Go
Expand Down

0 comments on commit 1c18b78

Please sign in to comment.