Skip to content

Commit

Permalink
Merge pull request #326 from microsoft/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
colbylwilliams authored Feb 18, 2022
2 parents f4388ee + ecc6083 commit 13df8ba
Show file tree
Hide file tree
Showing 12 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
az bicep build -f main.bicep --outfile ../../release_assets/azuredeploy.json
- name: Create OpenAPI & Python Client
run: bash ./scripts/create-clients.sh ./publish/TeamCloud.API.dll
run: bash ./tools/create-clients.sh ./publish/TeamCloud.API.dll

- name: Create Release Asset - Web
working-directory: ./web
Expand All @@ -80,7 +80,7 @@ jobs:
npm run build
- name: Build CLI
run: bash ./scripts/build-cli.sh
run: bash ./tools/build-cli.sh

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
# This must be run LAST - AFTER everything is added to release_assets
- name: Prepare Release Assets
id: prepare_assets
run: python ./scripts/prepare-assets.py ${{ steps.gitversion.outputs.majorMinorPatch }}
run: python ./tools/prepare-assets.py ${{ steps.gitversion.outputs.majorMinorPatch }}

- name: Create Release
id: publish_assets
Expand Down
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
"label": "ngrok: set url",
"command": "python3",
"args": [
"scripts/get-url.py"
"tools/get-url.py"
],
"problemMatcher": [],
"presentation": {
Expand Down Expand Up @@ -469,7 +469,7 @@
{
"label": "create clients",
"type": "shell",
"command": "${workspaceFolder}/scripts/create-clients.sh",
"command": "${workspaceFolder}/tools/create-clients.sh",
"options": {
"shell": {
"executable": "/bin/sh"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
using TeamCloud.Secrets;
using TeamCloud.Serialization;
using TeamCloud.Serialization.Forms;
using TeamCloud.Model;

namespace TeamCloud.Adapters.AzureResourceManager;

Expand Down Expand Up @@ -342,7 +343,7 @@ private async Task<string> CreateResourceIdAsync(Component component)
var resourceGroup = await session.ResourceGroups
.Define(resourceGroupName)
.WithRegion(location)
.WithTag("TeamCloud.ComponentId", component.Id)
.WithTags(component.GetWellKnownTags())
.CreateAsync()
.ConfigureAwait(false);

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 13df8ba

Please sign in to comment.