Skip to content

Commit

Permalink
fix(ci): correct now deprecated GHA syntaxes
Browse files Browse the repository at this point in the history
  • Loading branch information
radicand committed Jul 28, 2024
1 parent 7d438df commit 71535be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Extract tag
id: tagdata
run: |
echo "::set-output name=tag::`cat server/hasura/version.txt`"
echo "tag=`cat server/hasura/version.txt`" >> $GITHUB_OUTPUT
- name: Docker meta
id: meta
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Extract env url
id: envurl
run: |
echo "::set-output name=url::cookbookery-api.${{ secrets.KUBE_INGRESS_BASE_DOMAIN }}"
echo "url=cookbookery-api.${{ secrets.KUBE_INGRESS_BASE_DOMAIN }}" >> $GITHUB_OUTPUT
- name: Install Helm
uses: azure/setup-helm@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
- name: Extract env url
id: envurl
run: |
echo "::set-output name=url::cookbookery-web.${{ secrets.KUBE_INGRESS_BASE_DOMAIN }}"
echo "url=cookbookery-web.${{ secrets.KUBE_INGRESS_BASE_DOMAIN }}" >> $GITHUB_OUTPUT
- name: Install Helm
uses: azure/setup-helm@v4
Expand Down

0 comments on commit 71535be

Please sign in to comment.