Open
Conversation
* Fixeed spacing for method chaining * Break the build
Comment on lines
+18
to
+40
| name: Deploy ${{ inputs.env }} | ||
| runs-on: ubuntu-latest | ||
| environment: ${{ inputs.env }} | ||
|
|
||
| steps: | ||
| - name: download artifact | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: dometrain-artifact | ||
| path: artifacts/ | ||
|
|
||
| - name: Azure login | ||
| uses: azure/login@v2 | ||
| with: | ||
| client-id: ${{ secrets.AZURE_CLIENT_ID }} | ||
| tenant-id: ${{ secrets.AZURE_TENANT_ID }} | ||
| subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | ||
|
|
||
| - name: 'Deploy to Azure App Service Name' | ||
| uses: azure/webapps-deploy@v2 | ||
| with: | ||
| app-name: app-dometrain-github-actions-fgavilan-${{ inputs.env }} | ||
| package: artifacts/ No newline at end of file |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions
| path: artifacts/ | ||
|
|
||
| - name: Azure login | ||
| uses: azure/login@v2 |
Check warning
Code scanning / CodeQL
Unpinned tag for a non-immutable Action in workflow
| subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | ||
|
|
||
| - name: 'Deploy to Azure App Service Name' | ||
| uses: azure/webapps-deploy@v2 |
Check warning
Code scanning / CodeQL
Unpinned tag for a non-immutable Action in workflow
Comment on lines
+9
to
+28
| name: PR Verify | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Set up .NET Core | ||
| uses: actions/setup-dotnet@v4 | ||
| with: | ||
| dotnet-version: 9.0 | ||
|
|
||
| - name: Build with dotnet | ||
| run: dotnet build --configuration Release | ||
|
|
||
| - name: dotnet test | ||
| run: dotnet test --configuration Release --no-build | ||
|
|
||
| - name: dotnet format | ||
| run: dotnet format -v detailed --verify-no-changes No newline at end of file |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions
Comment on lines
+11
to
+20
| name: Print | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Print using runner's shell specific syntax | ||
| run: echo "the value of SOME_VALUE is $SOME_VALUE" | ||
|
|
||
| - name: Print using Context | ||
| run: echo "Again, the value of SOME_VALUE is ${{env.SOME_VALUE}}". | ||
|
No newline at end of file |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.