Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzie committed Jan 29, 2024
1 parent d98ead3 commit be1034b
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,22 @@ name: Docker

on:
schedule:
- cron: '16 21 * * *'
- cron: "16 21 * * *"
push:
branches: [ "master" ]
branches: ["master"]
# Publish semver tags as releases.
tags: [ '*.*.*' ]
tags: ["*.*.*"]
pull_request:
branches: [ "master" ]
branches: ["master"]

env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}


jobs:
build:

runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -43,7 +41,7 @@ jobs:
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1
with:
cosign-release: 'v2.1.1'
cosign-release: "v2.1.1"

# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
Expand Down Expand Up @@ -75,7 +73,7 @@ jobs:
id: build-and-push
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
with:
context: ./Source/Topica.Server/Topica.Server
context: Source/Topica.Server/Topica.Server
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down
25 changes: 25 additions & 0 deletions Source/Topica.Server/Topica.Server/Topica.Server.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Topica.Server", "Topica.Server.csproj", "{E25A1BAA-7F49-402E-B0B5-926BC9F8174D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E25A1BAA-7F49-402E-B0B5-926BC9F8174D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E25A1BAA-7F49-402E-B0B5-926BC9F8174D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E25A1BAA-7F49-402E-B0B5-926BC9F8174D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E25A1BAA-7F49-402E-B0B5-926BC9F8174D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {726FD4ED-1C6C-4E8B-966E-3F21C7E2BAD1}
EndGlobalSection
EndGlobal

0 comments on commit be1034b

Please sign in to comment.