From 5a6f7c1a076801131f5e3530baec1185061330f6 Mon Sep 17 00:00:00 2001 From: Chris Buckley Date: Mon, 22 Jul 2024 18:24:58 +0000 Subject: [PATCH] Fix gh api PATCH command --- .github/workflows/push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 57247f9..6c24aac 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -65,7 +65,7 @@ jobs: - name: Update GitHub bio env: GH_TOKEN: ${{ secrets.GH_TOKEN }} - run: gh api --PATCH user -F "bio=${{ format('{0} at {1}', needs.check-role.outputs.role, needs.check-role.outputs.company) }}" + run: gh api -X PATCH user -F "bio=${{ format('{0} at {1}', needs.check-role.outputs.role, needs.check-role.outputs.company) }}" - name: Set up git repo for main site uses: actions/checkout@v4 with: