Skip to content

Commit 671f6b1

Browse files
committed
Remove use of Makefile
They are only used in the github workflow and are way too complex for what little is done.
1 parent 9d01979 commit 671f6b1

File tree

5 files changed

+4
-52
lines changed

5 files changed

+4
-52
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
args: bin/deployment-create-status bin/deployment-get-id
1717
- name: Docker build
18-
run: make build
18+
run: docker build -t actions-github-deployment-status -f build-dockerfile
1919
- name: Docker Login
2020
if: github.ref == 'refs/heads/master'
2121
env:
@@ -24,4 +24,6 @@ jobs:
2424
run: echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
2525
- name: Publish
2626
if: github.ref == 'refs/heads/master'
27-
run: make publish
27+
run: |
28+
docker tag actions-github-deployment-status unacast/actions-github-deployment-status
29+
docker push unacast/actions-github-deployment-status

Makefile

Lines changed: 0 additions & 20 deletions
This file was deleted.

docker.mk

Lines changed: 0 additions & 17 deletions
This file was deleted.

help.mk

Lines changed: 0 additions & 3 deletions
This file was deleted.

shell.mk

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)