From 422d84a9b293767ba330cfedc9f85b1716de354a Mon Sep 17 00:00:00 2001 From: Jens Willmer Date: Wed, 9 Sep 2020 14:55:39 +0200 Subject: [PATCH] Create publish-latest-docker-image.yml --- .../workflows/publish-latest-docker-image.yml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/publish-latest-docker-image.yml diff --git a/.github/workflows/publish-latest-docker-image.yml b/.github/workflows/publish-latest-docker-image.yml new file mode 100644 index 0000000..94ecd50 --- /dev/null +++ b/.github/workflows/publish-latest-docker-image.yml @@ -0,0 +1,22 @@ +name: Publish Docker image +on: + push: + branches: + - master + +jobs: + push_to_registry: + name: Push Docker image to GitHub Packages + runs-on: ubuntu-latest + steps: + - name: Check out the repo + uses: actions/checkout@v2 + + - name: Push to GitHub Packages + uses: docker/build-push-action@v1 + with: + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + registry: docker.pkg.github.com + repository: remotecloud/kplex/kplex + tag_with_ref: true