File tree 3 files changed +19
-6
lines changed
3 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,21 @@ jobs:
24
24
run : grunt test
25
25
- name : Build
26
26
run : grunt build
27
- - name : Build and push Docker images
28
- uses : docker/build-push- action@v1.1.0
27
+ - name : Login to DockerHub
28
+ uses : docker/login- action@v2
29
29
with :
30
30
registry : docker.pedanticorderliness.com
31
31
username : ${{ secrets.DOCKER_REG_USER }}
32
32
password : ${{ secrets.DOCKER_REG_PASS }}
33
- repository : screeps-private-simulator
34
- tags : ${{ github.sha }}
35
- build-args :
36
- - BRANCH=${{ github.ref_name }}
33
+ - name : Build and push Docker images
34
+ uses : docker/build-push-action@v3
35
+ with :
36
+ file : ./k8s/Dockerfile
37
+ context : .
38
+ push : true
39
+ tags : |
40
+ docker.pedanticorderliness.com/screeps-private-server:${{ github.sha }}
41
+ docker.pedanticorderliness.com/screeps-private-server:${{ github.head_ref }}
42
+ - name : Create Screeps Server Resource
43
+ run : |
44
+ curl --fail -X POST -H "X-Access-Token: ${{ secrets.ACTIONS_ACCESS_TOKEN }}" "https://actions.pedanticorderliness.com/resource/screeps/server?branch=${{ github.head_ref }}&tag=${{ github.sha }}"
Original file line number Diff line number Diff line change
1
+ FROM docker.pedanticorderliness.com/screeps-private-server:main
2
+
3
+ # hacky, should look at other ways to get the branch's bot into the image
4
+ # complicated by the fact that the dist dir isn't checked in
5
+ COPY dist /pserver/node_modules/screeps-bot-choreographer/dist
File renamed without changes.
You can’t perform that action at this time.
0 commit comments