diff --git a/.github/workflows/commit-meeting-summaries.yml b/.github/workflows/commit-meeting-summaries.yml index d7b915a..0046010 100644 --- a/.github/workflows/commit-meeting-summaries.yml +++ b/.github/workflows/commit-meeting-summaries.yml @@ -12,13 +12,12 @@ jobs: steps: - name: Retrieve Meeting Summaries - id: retrieve-summaries run: | curl -X POST ${{ secrets.NETLIFY_BASE_URL }}/.netlify/functions/getMeetingSummaries \ -H 'Content-Type: application/json' \ -d '{}' \ -o meeting-summaries.json - echo "::set-output name=summaries::$(cat meeting-summaries.json)" + echo "summaries=$(cat meeting-summaries.json)" >> $GITHUB_STATE - name: Commit to GitHub run: | @@ -28,6 +27,6 @@ jobs: "owner": "SingularityNET-Archive", "repo": "SingularityNET-Archive", "filePath": "Data/meeting-summaries.json", - "content": ${{ steps.retrieve-summaries.outputs.summaries }}, + "content": ${{ env.summaries }}, "commitMessage": "Update meeting summaries" }' \ No newline at end of file