From 082a81e38cfa713ed33997dd1ab58989ee7f607f Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 15 May 2020 14:31:38 -0500 Subject: [PATCH] lets see if she builds --- .github/workflows/dockerpub.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/dockerpub.yml diff --git a/.github/workflows/dockerpub.yml b/.github/workflows/dockerpub.yml new file mode 100644 index 0000000..486c24a --- /dev/null +++ b/.github/workflows/dockerpub.yml @@ -0,0 +1,19 @@ +name: Publish Docker image +on: + release: + types: [published] +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: techniclor-creamsicle/osselbot/osselbot + tag_with_ref: true