Skip to content

Commit

Permalink
ci: rename steps
Browse files Browse the repository at this point in the history
  • Loading branch information
phnx47 committed Jan 4, 2023
1 parent 191fcd6 commit 58dae43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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

0 comments on commit 58dae43

Please sign in to comment.