From 18664802d3e77e20f787393accb0351c3b1a076b Mon Sep 17 00:00:00 2001 From: eric vz Date: Mon, 3 Jul 2023 14:34:16 -0500 Subject: [PATCH 1/5] Bump version to v2.0.2 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 81ef58f..b02d37b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v2.0.1 \ No newline at end of file +v2.0.2 \ No newline at end of file From fe5a7cc1fa8e417977d76e61046861650132a0ef Mon Sep 17 00:00:00 2001 From: eric vz Date: Mon, 3 Jul 2023 14:34:30 -0500 Subject: [PATCH 2/5] add gitattributes to force .sh file to eol=lf --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..526c8a3 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.sh text eol=lf \ No newline at end of file From 3e0260699620c17e657fe3ab67f4d42e520a4bc0 Mon Sep 17 00:00:00 2001 From: eric vz Date: Mon, 3 Jul 2023 14:40:44 -0500 Subject: [PATCH 3/5] add link to official docker build to readme --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 670ce7a..e53e9a0 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,12 @@ If you are installing during the development phase, please clone the repository using a virtual environment helps to keep a clean namespace and reduce the chance of bugs. +If you plan to run under Docker, we now provide an official image: medeor/starrypy3k. + +For a list of available tags, see: [Docker Hub](https://hub.docker.com/r/medeor/starrypy3k) + + + ### Starbound Server Configuration StarryPy works as a benevolent "man in the middle" between the Starbound game client and the Starbound dedicated server, in effect acting as a proxy server. From 99dcfde31b8599f01b6d67fbf3eae31cfcc4db45 Mon Sep 17 00:00:00 2001 From: eric vz Date: Mon, 3 Jul 2023 14:47:30 -0500 Subject: [PATCH 4/5] add action to update dockerhub description --- .github/workflows/build-to-dockerhub.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-to-dockerhub.yml b/.github/workflows/build-to-dockerhub.yml index 2920953..538c6bc 100644 --- a/.github/workflows/build-to-dockerhub.yml +++ b/.github/workflows/build-to-dockerhub.yml @@ -48,4 +48,12 @@ jobs: context: . push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file + labels: ${{ steps.meta.outputs.labels }} + + - name: Docker Hub Description + uses: peter-evans/dockerhub-description@v3 + if: startsWith(github.ref, 'refs/tags/v') + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_PASSWORD }} + repository: ${{ secrets.DOCKERHUB_IMAGE }} \ No newline at end of file From 2a51ed725bf172f1e217e13607b450c8dee4341f Mon Sep 17 00:00:00 2001 From: eric vz Date: Mon, 3 Jul 2023 14:49:22 -0500 Subject: [PATCH 5/5] fix token environment name --- .github/workflows/build-to-dockerhub.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-to-dockerhub.yml b/.github/workflows/build-to-dockerhub.yml index 538c6bc..1062e8d 100644 --- a/.github/workflows/build-to-dockerhub.yml +++ b/.github/workflows/build-to-dockerhub.yml @@ -55,5 +55,5 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') with: username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_PASSWORD }} + password: ${{ secrets.DOCKERHUB_TOKEN }} repository: ${{ secrets.DOCKERHUB_IMAGE }} \ No newline at end of file