Skip to content

Commit

Permalink
[Add] dependabot, update publish container action
Browse files Browse the repository at this point in the history
  • Loading branch information
samatstariongroup committed Aug 12, 2024
1 parent 07afdf8 commit 1231bfe
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/web-app-publish-docker-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
id: vars
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
- name: Build the Docker image and tag
run: docker build -f reqifviewer/Dockerfile -t rheagroup/reqifviewer:latest -t rheagroup/reqifviewer:${{ steps.vars.outputs.tag }} .
run: docker build -f reqifviewer/Dockerfile -t stariongroup/reqifviewer:latest -t stariongroup/reqifviewer:${{ steps.vars.outputs.tag }} .
- name: push $RELEASE_VERSION tag
run: docker push rheagroup/reqifviewer:${{ steps.vars.outputs.tag }}
run: docker push stariongroup/reqifviewer:${{ steps.vars.outputs.tag }}
- name: push latest tag
run: docker push rheagroup/reqifviewer:latest
run: docker push stariongroup/reqifviewer:latest
18 changes: 18 additions & 0 deletions dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 2
updates:
# Enable updates for NuGet dependencies
- package-ecosystem: "nuget"
# Directory where your solution files are located
directory: "/"
# Schedule for checking updates
schedule:
interval: "weekly"
# Do not automatically open pull requests
open-pull-requests-limit: 0
# Additional configuration to specify how Dependabot should handle version updates
versioning-strategy: "widen"
# Custom commit message options
commit-message:
prefix: "chore"
prefix-development: "chore"
include: "scope"
2 changes: 1 addition & 1 deletion reqifviewer/reqifviewer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup Label="Application">
<Title>reqifviewer</Title>
<Version>2.1.0</Version>
<Version>2.2.0</Version>
<Description>Web Application to inspect ReqIF files</Description>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
Expand Down

0 comments on commit 1231bfe

Please sign in to comment.