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>
This commit is contained in:
Dirk Hohndel 2019-11-25 12:57:32 -08:00
parent 13db505866
commit 5446e9db83
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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

View file

@ -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