chore: Rename deploy.yml to cd.yml and update workflow names and descriptions

This commit is contained in:
HAHWUL 2024-07-23 23:49:33 +09:00
parent 48e9915b5a
commit 34a812fd81
2 changed files with 10 additions and 21 deletions

View File

@ -1,11 +1,20 @@
--- ---
name: Deploy name: Continuous Deployment
on: on:
push: push:
branches: [main] branches: [main]
workflow_dispatch: workflow_dispatch:
jobs: 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: Deploy:
needs: Contributors
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2

View File

@ -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