From 58dae431e3abc726c82c84231913595e9b9218f6 Mon Sep 17 00:00:00 2001 From: Serge K Date: Wed, 4 Jan 2023 20:42:47 +0700 Subject: [PATCH] ci: rename steps --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01ec8ce4..9668d002 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: run: dotnet restore - name: 🏭 Build run: dotnet build --no-restore -c Release -p:ContinuousIntegrationBuild=true - - name: 🐳 Docker Compose + - name: 🐳 Docker Compose Up run: docker-compose up -d - name: 💤 Wait for Containers uses: jakejarvis/wait-action@master @@ -55,7 +55,7 @@ jobs: uses: actions/download-artifact@v3 with: name: nupkg - - name: 📦 Publish to GitHub Packages + - name: 📦 Push to GitHub run: dotnet nuget push "*.nupkg" -s https://nuget.pkg.github.com/phnx47/index.json -k ${{ secrets.GH_PKG_PAT }} --skip-duplicate nuget: name: 🚀 Deploy to NuGet @@ -67,5 +67,5 @@ jobs: uses: actions/download-artifact@v3 with: name: nupkg - - name: 📦 Publish to NuGet + - name: 📦 Push to NuGet run: dotnet nuget push "*.nupkg" -k ${{ secrets.NUGET_KEY }} -s https://api.nuget.org/v3/index.json