Skip to content

Commit

Permalink
Pushing new release (#6)
Browse files Browse the repository at this point in the history
* Create build.yml (#4)

* Create build.yml

* Update build.yml

* Update build.yml

* Removed Blazor projects from solution.

* Added a solution to be used for ci/cd on mac build agents.

* Update build.yml

* Moved ci/ci solution to build folder.

* Update build.yml

* Started work on nuspec files.

* Update build.yml

* Fixed paths in Build solution.

* Update build.yml

* Update build.yml

* Fixed nuspec files.

* Fixed another path.

* More path updates.

* Added additional nuspec files.

* Fixed path.

* Try secret

* Tried secrets 2

* Fixed nuspec file.

* Updated the workflows.

* Updated workflows again.

* Switched from run_number to run_id (#5)
  • Loading branch information
jonlipsky committed Jan 5, 2021
1 parent 516dbda commit e74fb65
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Graphics/.github/workflows/push-release-github-packages.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: roryprimrose/set-vs-sdk-project-version@v1
with:
projectFilter: 'src/*/*.csproj'
version: '0.1.${{ github.run_number }}'
version: '0.1.${{ github.run_id }}'

- name: NuGet Restore
run: nuget restore build/Build.System.Graphics.Mac.sln
Expand All @@ -31,19 +31,19 @@ jobs:
run: msbuild build/Build.System.Graphics.Mac.sln /verbosity:normal /t:Rebuild /p:Configuration=Release

- name: NuGet Pack
run: nuget pack build/System.Graphics.nuspec -Version 0.1.${{ github.run_number }} -OutputDirectory . -BasePath .
run: nuget pack build/System.Graphics.nuspec -Version 0.1.${{ github.run_id }} -OutputDirectory . -BasePath .

- name: NuGet Pack
run: nuget pack build/System.Graphics.Skia.nuspec -Version 0.1.${{ github.run_number }} -OutputDirectory . -BasePath .
run: nuget pack build/System.Graphics.Skia.nuspec -Version 0.1.${{ github.run_id }} -OutputDirectory . -BasePath .

- name: NuGet Pack
run: nuget pack build/System.Graphics.Forms.nuspec -Version 0.1.${{ github.run_number }} -OutputDirectory . -BasePath .
run: nuget pack build/System.Graphics.Forms.nuspec -Version 0.1.${{ github.run_id }} -OutputDirectory . -BasePath .

- name: NuGet Pack
run: nuget pack build/System.Graphics.Skia.Forms.nuspec -Version 0.1.${{ github.run_number }} -OutputDirectory . -BasePath .
run: nuget pack build/System.Graphics.Skia.Forms.nuspec -Version 0.1.${{ github.run_id }} -OutputDirectory . -BasePath .

- name: NuGet Pack
run: nuget pack build/System.Graphics.Text.Markdig.nuspec -Version 0.1.${{ github.run_number }} -OutputDirectory . -BasePath .
run: nuget pack build/System.Graphics.Text.Markdig.nuspec -Version 0.1.${{ github.run_id }} -OutputDirectory . -BasePath .

- name: Install GPR
run: dotnet tool install -g gpr --no-cache -v q
Expand Down

0 comments on commit e74fb65

Please sign in to comment.