Skip to content

Commit

Permalink
ci: 💚 retry with correct resource id
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustav-Eikaas committed Aug 14, 2023
1 parent 439abae commit 65942d9
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fprd-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- name: 'Obtain token for upload'
shell: bash
run: echo "FUSION_TOKEN=$(az account get-access-token --resource '${{ secrets.AZURE_RESOURCE_ID }}' | jq '.accessToken')" >> $GITHUB_ENV
run: echo "FUSION_TOKEN=$(az account get-access-token --resource '${{ secrets.AZURE_RESOURCE_PROD_ID }}' | jq '.accessToken')" >> $GITHUB_ENV

- name: Checkout
uses: actions/checkout@v3
Expand Down
1 change: 0 additions & 1 deletion apps/loop/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ const LoopApp = () => {
};

export const render = createRender(LoopApp, configure, 'Loop');

export default render;
1 change: 0 additions & 1 deletion apps/punch/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ const PunchApp = () => {
};

export const render = createRender(PunchApp, configure, 'Punch');

export default render;
1 change: 1 addition & 0 deletions apps/workorder/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ const WorkorderApp = () => {
};

export const render = createRender(WorkorderApp, configure, 'Workorder');

export default render;

0 comments on commit 65942d9

Please sign in to comment.