Compare commits

..

4 Commits

Author SHA1 Message Date
Robert McRackan
43d1019059 * Bug fix #1048: docker: Error when using SLEEP_TIME - "integer expression expected"
Thanks @charltonstanley !
2024-11-19 06:40:51 -05:00
Robert McRackan
ed87ded77a Docker deployment fix 2024-11-14 22:51:02 -05:00
rmcrackan
56d4205360 Merge pull request #1042 from pixil98/master
Exclude docker build report artifact from release packing
2024-11-14 22:50:26 -05:00
Aaron Reisman
1f839606ae Add a pattern to exclude docker build artifact from release 2024-11-14 16:33:30 -06:00
3 changed files with 4 additions and 3 deletions

View File

@@ -43,6 +43,7 @@ jobs:
uses: actions/download-artifact@v4
with:
path: artifacts
pattern: "*(Classic-)Libation.*"
- name: Release
id: release

View File

@@ -149,7 +149,7 @@ main() {
SLEEP_TIME=-1
fi
if [ "${SLEEP_TIME}" -eq -1 ]; then
if [ "${SLEEP_TIME}" == -1 ]; then
info "running once"
else
info "running every ${SLEEP_TIME}"
@@ -161,7 +161,7 @@ main() {
run
# Liberate only once if SLEEP_TIME was set to -1
if [ "${SLEEP_TIME}" -eq -1 ]; then
if [ "${SLEEP_TIME}" == -1 ]; then
break
fi

View File

@@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>11.5.3.1</Version>
<Version>11.5.5.1</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Octokit" Version="11.0.1" />