-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This enebles us to exclude certain category/rarity combinations from the item shop. Currently excluding legendary hair items due to #53 - [x] cleaned up item-shop data - [x] added const for filtering out by `[[Category, Rarity[]]]` - [x] implemented filters in item-shop - [x] update view --------- Co-authored-by: Xabier Almazor <[email protected]> Co-authored-by: Xabier Almazor <[email protected]> Co-authored-by: Wietze <[email protected]> Co-authored-by: Xabier Almazor Telek <[email protected]> Co-authored-by: Pandelis Symeonidis <[email protected]> Co-authored-by: Axel Verheul <[email protected]> Co-authored-by: Pandelis Symeonidis <[email protected]>
- Loading branch information
1 parent
564d72b
commit 44196a4
Showing
4 changed files
with
90 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
trigger: | ||
- develop | ||
|
||
pool: | ||
vmImage: "ubuntu-latest" | ||
|
||
stages: | ||
- stage: build_and_deploy | ||
displayName: Build and Deploy | ||
dependsOn: [] | ||
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest')) | ||
jobs: | ||
- job: build_and_deploy | ||
displayName: Build Docker images and deploy through Kubernetes | ||
steps: | ||
- script: curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64 && sudo install skaffold /usr/local/bin/ | ||
displayName: Install Skaffold | ||
- task: Docker@2 | ||
displayName: Login to Container Registry | ||
inputs: | ||
command: login | ||
containerRegistry: $(CONTAINER_REGISTRY_SERVICE_CONNECTION) | ||
- task: DownloadSecureFile@1 | ||
name: authkey | ||
displayName: "Download Service Account Key" | ||
inputs: | ||
secureFile: web3-agoric.json | ||
retryCount: "2" | ||
- script: gcloud auth activate-service-account [email protected] --key-file=$(authkey.secureFilePath) | ||
displayName: Activate Service Account | ||
- task: Kubernetes@1 | ||
inputs: | ||
connectionType: "Kubernetes Service Connection" | ||
kubernetesServiceEndpoint: "gke-service-connection" | ||
namespace: "agoric-makefile-automation" | ||
command: "login" | ||
- script: | | ||
cd frontend | ||
export $(grep -v '^#' .env.emerynet | xargs) | ||
envsubst < ../deployment/emerynet/workloads/config/ui-config.template.yaml > ../deployment/emerynet/workloads/config/ui-config.yaml | ||
envsubst < skaffold.emerynet.template.yaml > skaffold.emerynet.yaml | ||
skaffold run --filename skaffold.emerynet.yaml | ||
displayName: Build and push docker images |
This file contains 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
This file contains 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
This file contains 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