Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolai1205 authored Oct 28, 2024
1 parent 8615c9b commit 5658273
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,19 @@ jobs:
# Step to Write API_URL to a File (Temporary - Remember to Delete After)
- name: Write API_URL to File
run: echo "$API_URL" > $GITHUB_WORKSPACE/api_url.txt
run: echo "$API_URL" > api_url.txt
env:
API_URL: ${{ secrets.API_URL }}

# Debugging Step: List files to verify api_url.txt is created
- name: List Files
run: ls -la

- name: Upload API_URL File as Artifact
uses: actions/upload-artifact@v3
with:
name: api_url
path: $GITHUB_WORKSPACE/api_url.txt
path: api_url.txt

- name: Run Synternet Data Layer
run: python SYNTERNET_DATA_LAYER.py
Expand Down

0 comments on commit 5658273

Please sign in to comment.