Compare commits

...

5 Commits

Author SHA1 Message Date
31f5e3938c Increment version.
All checks were successful
Build / build (push) Successful in 1m24s
2024-06-14 21:53:08 +03:00
03ac61a4d2 Fix typo in publish.sh.
All checks were successful
Build / build (push) Successful in 1m18s
2024-06-14 18:51:16 +03:00
9dcd5e56fa Rename API key.
Some checks failed
Build / build (push) Failing after 1m17s
2024-06-14 18:48:41 +03:00
018f195000 Make ci run on push to tag.
Some checks failed
Build / build (push) Failing after 1m20s
2024-06-14 18:44:56 +03:00
13ea2941da fix typo in build script. 2024-06-14 18:43:14 +03:00
4 changed files with 7 additions and 6 deletions

@ -2,8 +2,9 @@ name: Build
run-name: Building with docker container.
on:
workflow_dispatch:
tags:
- *
push:
tags:
- '*'
jobs:
build:
@ -11,7 +12,7 @@ jobs:
container:
image: git.mixedup.dev/refuel/docker-cross-compiler
env:
QUIK_API_KEY: "${{secrets.REFUEL_API_KEY}}"
REFUEL_API_KEY: "${{secrets.REFUEL_API_KEY}}"
NUGET_USER_NAME: "${{vars.NUGET_USER_NAME}}"
NUGET_INDEX: "${{vars.NUGET_INDEX}}"
volumes:

@ -13,7 +13,7 @@
<!-- Nuget Properties. -->
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>ReFuel.StbImage</PackageId>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<Authors>STBI Authors, H. Utku Maden</Authors>
<Description>
A C# wrapper for the ubiquitous stb_image.h and stb_image_write.h library.

@ -1 +1 @@
Subproject commit caafc898f366d4f642c22d5ccdc940e6a25f32f0
Subproject commit 36660bcf380668412a79ca06c373b8af1cd24e04

@ -24,4 +24,4 @@ dotnet nuget add source \
-n ReFuel -u "$NUGET_USER_NAME" -p "$REFUEL_API_KEY" \
--store-password-in-clear-text \
"$NUGET_INDEX"
dotnet nuget push -s ReFeul bin/*/*.nupkg
dotnet nuget push -s ReFuel bin/*/*.nupkg