mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-04 16:49:36 +00:00
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
38c35fe24e | ||
|
928b3aed92 | ||
|
da316abf9c | ||
|
e8806b7b91 | ||
|
908a444856 | ||
|
a0337fcbe5 | ||
|
150eeb6fdf |
57
.github/workflows/master_cartaid.yml
vendored
Normal file
57
.github/workflows/master_cartaid.yml
vendored
Normal file
@ -0,0 +1,57 @@
|
||||
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
|
||||
# More GitHub Actions for Azure: https://github.com/Azure/actions
|
||||
|
||||
name: Build and deploy ASP.Net Core app to Azure Web App - cartaid
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up .NET Core
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: '7.x'
|
||||
include-prerelease: true
|
||||
|
||||
- name: Build with dotnet
|
||||
run: dotnet build --configuration Release
|
||||
|
||||
- name: dotnet publish
|
||||
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp
|
||||
|
||||
- name: Upload artifact for deployment job
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: .net-app
|
||||
path: ${{env.DOTNET_ROOT}}/myapp
|
||||
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
environment:
|
||||
name: 'Production'
|
||||
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
|
||||
|
||||
steps:
|
||||
- name: Download artifact from build job
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: .net-app
|
||||
|
||||
- name: Deploy to Azure Web App
|
||||
id: deploy-to-webapp
|
||||
uses: azure/webapps-deploy@v2
|
||||
with:
|
||||
app-name: 'cartaid'
|
||||
slot-name: 'Production'
|
||||
package: .
|
||||
publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_7ADA3B09005E46ACB8BCEDD787A6C43F }}
|
@ -30,20 +30,20 @@ public partial class TopDeals : ComponentBase
|
||||
TopDealsGift.Add(new TopDealsProduct
|
||||
{
|
||||
Id = "2",
|
||||
Name = "Playmobil A-Team Van",
|
||||
Price = 45.99,
|
||||
ImagesUrls = "https://m.media-amazon.com/images/I/81x-2k0wQPL._AC_SL1500_.jpg",
|
||||
Url = "https://www.amazon.com/dp/B095KP2T5V/ref=cm_gf_adjq_d_p0_e0_qd0_wDMrpoirWfFUdKIYB3rB"
|
||||
Name = "AstroAI 40\" Snow Brush and Detachable Ice Scraper",
|
||||
Price = 24.99,
|
||||
ImagesUrls = "https://m.media-amazon.com/images/I/619MbCzNBwL._AC_SL1500_.jpg",
|
||||
Url = "https://www.amazon.com/dp/B0BFW4SYYM?th=1&linkCode=ll1&tag=cartaid-20&linkId=e29b2809b46ef1312ba2fb18fc1a2f4f&language=en_US&ref_=as_li_ss_tl"
|
||||
});
|
||||
|
||||
|
||||
TopDealsGift.Add(new TopDealsProduct
|
||||
{
|
||||
Id = "3",
|
||||
Name = "Amazfit GTS 3 Smart",
|
||||
Price = 70.21,
|
||||
ImagesUrls = "https://m.media-amazon.com/images/I/61v3RM+Y9-L._AC_SL1500_.jpg",
|
||||
Url = "https://www.amazon.com/Amazfit-Android-Fitness-Display-Tracking/dp/B09H5TWZQT?pf_rd_r=F00JZCSF46A9QDAJQ16B&pf_rd_t=Events&pf_rd_i=cybermonday&pf_rd_p=b5d7c894-3da1-49e6-8e23-1993d3fa6730&pf_rd_s=slot-6&ref=dlx_cyber_gd_dcl_img_4_d2b1e900_dt_sl6_30&th=1"
|
||||
Name = "Worry Free Zone: Unveiling the Warrior",
|
||||
Price = 12.99,
|
||||
ImagesUrls = "https://m.media-amazon.com/images/W/MEDIAX_792452-T1/images/I/61aNo5BbeiL._SL1499_.jpg",
|
||||
Url = "https://www.amazon.com/dp/B0CQGL641N?peakEvent=4&dealEvent=1&linkCode=ll1&tag=cartaid-20&linkId=0bfc06738234553ab6ab9394d4a41e6e&language=en_US&ref_=as_li_ss_tl"
|
||||
});
|
||||
|
||||
TopDealsGaming.Add(new TopDealsProduct
|
||||
|
Loading…
Reference in New Issue
Block a user