Skip to content

Commit

Permalink
Merge pull request #110 from siemens/hotfix_npm
Browse files Browse the repository at this point in the history
Update compile.yml
  • Loading branch information
karthika-g committed Jan 3, 2024
2 parents 1672de3 + 5af7d49 commit 94f6d30
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
$sourceFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "*"
$outFolder = Join-Path $env:GITHUB_WORKSPACE "out" | Join-Path -ChildPath "continuous-clearing"
New-Item -ItemType Directory -Force -Path $outFolder
$fileName = "continuous-clearing-5.1.0.zip"
$fileName = "continuous-clearing-5.1.1.zip"
Write-Host "Filename: '$fileName'"
Write-Host "sourceFolder: '$sourceFolder'"
Write-Host "Outfolder: '$outFolder'"
Expand Down Expand Up @@ -138,8 +138,8 @@ jobs:
- name: Create Nuget Packages
id: createNupkg
run: |
nuget pack CA.nuspec -Version 5.1.0
Write-Host "::set-output name=nupkg-LicenseClearingTool::continuous-clearing.5.1.0.nupkg"
nuget pack CA.nuspec -Version 5.1.1
Write-Host "::set-output name=nupkg-LicenseClearingTool::continuous-clearing.5.1.1.nupkg"
- name: Archive NuGet Packages
uses: actions/upload-artifact@v2
Expand All @@ -152,9 +152,9 @@ jobs:
id: builddocker
#if: ${{ false }} # disable for now
run: |
docker build . --file Dockerfile --tag ${{ github.repository }}:continuous-clearing-v5.1.0
docker save ${{ github.repository }}:continuous-clearing-v5.1.0 -o continuous-clearing-v5.1.0.tar
Write-Host "::set-output name=docker-LicenseClearingTool::continuous-clearing-v5.1.0.tar"
docker build . --file Dockerfile --tag ${{ github.repository }}:continuous-clearing-v5.1.1
docker save ${{ github.repository }}:continuous-clearing-v5.1.1 -o continuous-clearing-v5.1.1.tar
Write-Host "::set-output name=docker-LicenseClearingTool::continuous-clearing-v5.1.1.tar"
- name: Archive docker image
#if: ${{ false }} # disable for now
Expand Down Expand Up @@ -195,9 +195,9 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v5.1.0
tag_name: v5.1.1
#tag_name: ${{ needs.build.outputs.semver }}
release_name: Release v5.1.0
release_name: Release v5.1.1
body: |
${{ github.event.head_commit.message }}
draft: true
Expand Down

0 comments on commit 94f6d30

Please sign in to comment.