-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Initial draft for wing deployment action blog post #610
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's great and useful!
- name: Deploy Winglang App | ||
uses: winglang/wing-github-action/actions/[email protected] | ||
with: | ||
entry: 'main.wing' # Required, replace this with your entry file if different |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
entry: 'main.wing' # Required, replace this with your entry file if different | |
entry: 'main.w' # Required, replace this with your entry file if different |
```yml | ||
steps: | ||
- name: Pull Request Diff | ||
uses: winglang/wing-github-action/actions/pull-request-diff@main |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using the version from @main? Or do you want to link to a specific release, like you're doing on the deployment action?
- name: Pull Request Diff | ||
uses: winglang/wing-github-action/actions/pull-request-diff@main | ||
with: | ||
entry: 'main.wing' # Required, replace this with your entry file if different |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
entry: 'main.wing' # Required, replace this with your entry file if different | |
entry: 'main.w' # Required, replace this with your entry file if different |
Initial draft for a blog post about the Wing Deploy Action