Skip to content

Commit 108d21c

Browse files
authored
Merge pull request #8 from ryanrolds/pr_action_test
Create server for PR test #1
2 parents 195e10b + d25a24b commit 108d21c

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

.github/workflows/pr_open.yml

+14-6
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,21 @@ jobs:
2424
run: grunt test
2525
- name: Build
2626
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
2929
with:
3030
registry: docker.pedanticorderliness.com
3131
username: ${{ secrets.DOCKER_REG_USER }}
3232
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 }}"

k8s/Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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.

0 commit comments

Comments
 (0)