We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 20a2d9f + de192e6 commit beff8cdCopy full SHA for beff8cd
.travis.yml
@@ -0,0 +1,13 @@
1
+services: docker
2
+before_install:
3
+ # set env vars in the build settings to interact with repositories
4
+ # see https://docs.travis-ci.com/user/environment-variables/#Defining-Variables-in-Repository-Settings
5
+ - docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
6
+script:
7
+ - docker build -t "zopanix/factorio:${TRAVIS_TAG}" .
8
+deploy:
9
+ provider: script
10
+ script: docker push "zopanix/factorio:${TRAVIS_TAG}"
11
+ skip_cleanup: false
12
+ on:
13
+ tags: true
0 commit comments