Skip to content

Commit c09dff2

Browse files
authored
Merge pull request #78 from spowelljr/fixThings
CI: Add dependabot and add gopogh-server to release
2 parents 83aab8e + 48336be commit c09dff2

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
version: 2
3+
updates:
4+
- package-ecosystem: "gomod"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "daily"

.github/workflows/release.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,18 @@ jobs:
6868
mac os
6969
curl -LO https://github.com/medyagh/gopogh/releases/download/${{ github.ref }}/gopogh-darwin-amd64 && sudo install gopogh-darwin-amd64 /usr/local/bin/gopogh
7070
files: ./out/*
71-
- name: Publish to Docker Repository
71+
- name: Publish gopogh to Docker Repository
7272
uses: elgohr/Publish-Docker-Github-Action@v5
7373
with:
7474
name: medyagh/gopogh
7575
username: ${{ secrets.DOCKER_HUB_USERNAME }}
7676
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
7777
tag_names: true
78-
78+
- name: Publish gopogh-server to Docker Repository
79+
uses: elgohr/Publish-Docker-Github-Action@v5
80+
with:
81+
name: medyagh/gopogh-server
82+
dockerfile: Dockerfile.server
83+
username: ${{ secrets.DOCKER_HUB_USERNAME }}
84+
password: ${{ secrets.DOCKER_HUB_PASSWORD }}
85+
tag_names: true

0 commit comments

Comments
 (0)