summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2019-11-25 12:57:32 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-11-28 11:12:59 -0800
commit5446e9db83dd64a17c2c87c2683ba4d01c1fe496 (patch)
tree4bc62da2c572e63b584454e7146c37a4484e43c3 /.github
parent13db505866f1a36dd313ded3c15c45ae917fef27 (diff)
downloadsubsurface-5446e9db83dd64a17c2c87c2683ba4d01c1fe496.tar.gz
GitHub Actions: set new version numbers for the docker images
These are of course arbitrary. The Android container image for some reason based its version number on the Qt version. Which may or may not be a good idea. The other two had 0.x version numbers, so let's move them to 1.0 for the first release that gets pushed to the subsurface account on docker hub. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/android-dockerimage.yml2
-rw-r--r--.github/workflows/linux-dockerimage.yml2
-rw-r--r--.github/workflows/mxe-dockerimage-stage1.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/android-dockerimage.yml b/.github/workflows/android-dockerimage.yml
index ce97e3da5..6b7c77050 100644
--- a/.github/workflows/android-dockerimage.yml
+++ b/.github/workflows/android-dockerimage.yml
@@ -10,7 +10,7 @@ jobs:
android-build-container:
runs-on: ubuntu-latest
env:
- VERSION: ${{ '5.13.01' }}
+ VERSION: ${{ '5.13.10' }} # the version numbers here is based on the Qt version, the third digit is the rev of the docker image
steps:
- uses: actions/checkout@v1
diff --git a/.github/workflows/linux-dockerimage.yml b/.github/workflows/linux-dockerimage.yml
index 3890edc6e..a23a6a6a0 100644
--- a/.github/workflows/linux-dockerimage.yml
+++ b/.github/workflows/linux-dockerimage.yml
@@ -10,7 +10,7 @@ jobs:
trusty-qt512:
runs-on: ubuntu-latest
env:
- VERSION: ${{ '0.7' }} # just assigning a number wouldn't get you a string
+ VERSION: ${{ '1.0' }} # 'official' images should have a dot-zero version
steps:
- uses: actions/checkout@v1
diff --git a/.github/workflows/mxe-dockerimage-stage1.yml b/.github/workflows/mxe-dockerimage-stage1.yml
index 160625f95..f116c51aa 100644
--- a/.github/workflows/mxe-dockerimage-stage1.yml
+++ b/.github/workflows/mxe-dockerimage-stage1.yml
@@ -14,7 +14,7 @@ jobs:
# as you test changes toward a new release, call those 1.1, 1.2, 1.3, etc
# VERSION is just that version presented as a string constant
#
- VERSION: ${{ '0.5' }}
+ VERSION: ${{ '1.0' }}
steps:
- uses: actions/checkout@v1