Skip to content

Commit

Permalink
Using new environment variable definition in GitHub Actions
Browse files Browse the repository at this point in the history
instead of deprecated set-output
  • Loading branch information
jonashackt committed Mar 20, 2023
1 parent b991d91 commit f485c44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/static-site-pulumi-aws-s3-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ jobs:
aws s3 sync ../dist/ s3://$(pulumi stack output bucketName) --acl public-read
echo "Access the Nuxt.js app at the following URL:"
pulumi stack output bucketUrl
echo "::set-output name=s3_url::http://$(pulumi stack output bucketUrl)"
echo "s3_url=http://$(pulumi stack output bucketUrl)" >> $GITHUB_OUTPUT
working-directory: ./deployment
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.idea
*.iml
.DS_Store

# Logs
logs
Expand Down

0 comments on commit f485c44

Please sign in to comment.