Skip to content

Commit

Permalink
chore: revert all release-please related changes (DEV-2705) (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum authored Oct 3, 2023
1 parent baeafef commit 11962dc
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 134 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/ark-resolver-tests.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/check-pr-title.yml

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: CI

on: [push]

jobs:
test:
name: ARK Resolver Tests
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Disk Free
run: |
df -h
docker system df
docker system prune --all --force --volumes
df -h
- name: Run ARK resolver unit tests
run: make test
- name: Disk Free After
run: |
df -h
docker system df
# publish only for develop and tags
publish:
name: Publish to Dockerhub
needs: [test]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 50
- name: Disk Free
run: |
df -h
docker system df
docker system prune --all --force --volumes
df -h
- name: build and publish all images to Dockerhub
run: |
echo ${{ secrets.DOCKER_HUB_TOKEN }} | docker login -u ${{ secrets.DOCKER_USER }} --password-stdin
make publish
- name: Disk Free After
run: |
df -h
docker system df
34 changes: 0 additions & 34 deletions .github/workflows/publish-to-dockerhub.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/release-please.yml

This file was deleted.

32 changes: 0 additions & 32 deletions CHANGELOG.md

This file was deleted.

0 comments on commit 11962dc

Please sign in to comment.