Rename docker-image.yml to .github/workflows/docker-image.yml
authorTim Düsterhus <duesterhus@woltlab.com>
Mon, 28 Sep 2020 15:16:33 +0000 (17:16 +0200)
committerGitHub <noreply@github.com>
Mon, 28 Sep 2020 15:16:33 +0000 (17:16 +0200)
.github/workflows/docker-image.yml [new file with mode: 0644]
docker-image.yml [deleted file]

diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml
new file mode 100644 (file)
index 0000000..38911f1
--- /dev/null
@@ -0,0 +1,20 @@
+name: Publish Docker image
+on:
+  push:
+    branches:
+      - master
+jobs:
+  push_to_registry:
+    name: Push Docker image to GitHub Packages
+    runs-on: ubuntu-latest
+    steps:
+      - name: Check out the repo
+        uses: actions/checkout@v2
+      - name: Push to GitHub Packages
+        uses: docker/build-push-action@v1
+        with:
+          username: ${{ github.actor }}
+          password: ${{ secrets.GITHUB_TOKEN }}
+          registry: docker.pkg.github.com
+          repository: WoltLab/blacklist/updater
+          tag_with_ref: true
diff --git a/docker-image.yml b/docker-image.yml
deleted file mode 100644 (file)
index 38911f1..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-name: Publish Docker image
-on:
-  push:
-    branches:
-      - master
-jobs:
-  push_to_registry:
-    name: Push Docker image to GitHub Packages
-    runs-on: ubuntu-latest
-    steps:
-      - name: Check out the repo
-        uses: actions/checkout@v2
-      - name: Push to GitHub Packages
-        uses: docker/build-push-action@v1
-        with:
-          username: ${{ github.actor }}
-          password: ${{ secrets.GITHUB_TOKEN }}
-          registry: docker.pkg.github.com
-          repository: WoltLab/blacklist/updater
-          tag_with_ref: true