From 0dbc0a9736f05deffd9e9648cd33daf936daa0a6 Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Tue, 12 Nov 2019 19:30:56 +0100 Subject: [PATCH] Drop Docker image --- .github/workflows/build.yml | 2 -- Dockerfile | 16 ---------------- 2 files changed, 18 deletions(-) delete mode 100644 Dockerfile diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0c15c7d..1abd4be 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,8 +10,6 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Build Docker image - run: docker build . --tag my-image-name:$(date +%s) - name: Verify action syntax # The action should not publish any real changes, but should succeed. uses: './' diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 1f9883e..0000000 --- a/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM alpine - -LABEL "name"="github-push" -LABEL "maintainer"="Adam Dobrawy " -LABEL "version"="0.0.1" - -LABEL "com.github.actions.name"="Git push for GitHub Actions" -LABEL "com.github.actions.description"="Runs 'git push' to GitHub in an Action" -LABEL "com.github.actions.icon"="upload-cloud" -LABEL "com.github.actions.color"="green" - -COPY README.md LICENSE start.sh / - -RUN apk add --no-cache git - -CMD ["/start.sh"]