返回提交历史
Deleted
.github/workflows/docker.yml
+0
-26
XFEstudio/SpaceNinjaServer
remove docker workflow
61e4ab19
代码差异
1 个文件
+0
-26
@@ -1,26 +0,0 @@
1
name: Build Docker image
2
on:
3
push:
4
branches:
5
- main
6
jobs:
7
docker:
8
if: github.repository == 'spaceninjaserver/SpaceNinjaServer'
9
runs-on: ubuntu-latest
10
steps:
11
- name: Set up Docker buildx
12
uses: docker/setup-buildx-action@v3
13
- name: Log in to container registry
14
uses: docker/login-action@v3
15
with:
16
registry: ghcr.io
17
username: ${{ github.actor }}
18
password: ${{ secrets.GITHUB_TOKEN }}
19
- name: Build and push
20
uses: docker/build-push-action@v6
21
with:
22
platforms: linux/amd64,linux/arm64
23
push: true
24
tags: |
25
ghcr.io/spaceninjaserver/spaceninjaserver:latest
26
ghcr.io/spaceninjaserver/spaceninjaserver:${{ github.sha }}