diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..e09e036 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +--- +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b671397..80f19cf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,11 +68,18 @@ jobs: mac os curl -LO https://github.com/medyagh/gopogh/releases/download/${{ github.ref }}/gopogh-darwin-amd64 && sudo install gopogh-darwin-amd64 /usr/local/bin/gopogh files: ./out/* - - name: Publish to Docker Repository + - name: Publish gopogh to Docker Repository uses: elgohr/Publish-Docker-Github-Action@v5 with: name: medyagh/gopogh username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_PASSWORD }} tag_names: true - + - name: Publish gopogh-server to Docker Repository + uses: elgohr/Publish-Docker-Github-Action@v5 + with: + name: medyagh/gopogh-server + dockerfile: Dockerfile.server + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_PASSWORD }} + tag_names: true