5 Commits

Author SHA1 Message Date
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
0c46adc68b Finish rebranding. 2024-06-14 18:40:36 +03:00
4 changed files with 9 additions and 7 deletions

View File

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

View File

@@ -13,12 +13,13 @@
<!-- Nuget Properties. --> <!-- Nuget Properties. -->
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> <GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageId>ReFuel.StbImage</PackageId> <PackageId>ReFuel.StbImage</PackageId>
<Version>1.1.3</Version> <Version>1.0.0</Version>
<Authors>STBI Authors, H. Utku Maden</Authors> <Authors>STBI Authors, H. Utku Maden</Authors>
<Description> <Description>
A C# wrapper for the ubiquitous stb_image.h and stb_image_write.h library. A C# wrapper for the ubiquitous stb_image.h and stb_image_write.h library.
</Description> </Description>
<PackageReadmeFile>README.md</PackageReadmeFile> <PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>images\icon.png</PackageIcon> <PackageIcon>images\icon.png</PackageIcon>
</PropertyGroup> </PropertyGroup>
@@ -29,8 +30,8 @@
that determines a lot of load paths for projects. that determines a lot of load paths for projects.
--> -->
<ItemGroup> <ItemGroup>
<Content Include="README.md" Pack="true" PackagePath="/"/> <Content Include="*.md" Pack="true" PackagePath="/"/>
<None Include="Quik.Common/assets/quik_ico_256.png" Pack="true" PackagePath="images\icon.png"/> <None Include="rf_stbimage.png" Pack="true" PackagePath="images\icon.png"/>
<Content Include="runtimes/linux-arm/native/*.so"> <Content Include="runtimes/linux-arm/native/*.so">
<PackagePath>runtimes/linux-arm/native/</PackagePath> <PackagePath>runtimes/linux-arm/native/</PackagePath>
<Pack>true</Pack> <Pack>true</Pack>

View File

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

BIN
rf_stbimage.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB