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"]