diff --git a/.github/workflows/deploy.yml b/.github/workflows/cd.yml similarity index 76% rename from .github/workflows/deploy.yml rename to .github/workflows/cd.yml index d8ef27c..2652111 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/cd.yml @@ -1,11 +1,20 @@ --- -name: Deploy +name: Continuous Deployment on: push: branches: [main] workflow_dispatch: jobs: + Contributors: + runs-on: ubuntu-latest + steps: + - uses: wow-actions/contributors-list@v1 + with: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + round: true + svgPath: images/CONTRIBUTORS.svg Deploy: + needs: Contributors runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/contributors.yml b/.github/workflows/contributors.yml deleted file mode 100644 index 9b9c328..0000000 --- a/.github/workflows/contributors.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Contributors -on: - push: - branches: [main] - workflow_dispatch: - inputs: - logLevel: - description: manual run - required: false - default: '' -jobs: - contributors: - runs-on: ubuntu-latest - steps: - - uses: wow-actions/contributors-list@v1 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - round: true - svgPath: images/CONTRIBUTORS.svg