We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2738d38 commit 8dce380Copy full SHA for 8dce380
.github/workflows/egg-docker-env.yml
@@ -0,0 +1,18 @@
1
+name: 'Eggdrop Docker development testing'
2
+description: 'Test dockerisms and environment variables'
3
+
4
+on:
5
+ push:
6
+ branches: [ $default-branch ]
7
+# pull_request:
8
+# branches: [ $default-branch ]
9
10
+jobs:
11
+ build-image:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Check out repository code
15
+ - uses: actions/checkout@v3
16
+ - run: echo 'putlog "[userlist]"; putlog "[passwdok user -]"; putlog [channels]; putlog "$botnick"; putlog "[server list]"; putlog "[dcclist]"; die' >> docker.tcl
17
+ - name: Build the Docker image
18
+ run: docker build . --file Dockerfile --tag eggdrop:$(date +%s)
0 commit comments