Skip to content

Commit

Permalink
workflow rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
pakkographic committed Aug 12, 2024
1 parent 62a2092 commit 511c3f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/dev-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,15 @@ on:
secrets:
NPM_TOKEN:
required: true
TEST_APP_TOKEN:
required: true
workflow_dispatch:

jobs:
lint:
name: ESLint
uses: ./.github/workflows/lint.yml
testing:
name: Feature Testing
uses: ./.github/workflows/feature-testing.yml
with:
TEST_APP_TOKEN: ${{ secrets.TEST_APP_TOKEN }}
publish:
runs-on: ubuntu-latest
needs: [lint, testing]
needs: [lint]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/should-publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,5 @@ jobs:
needs: [should-publish]
if: needs.should-publish.outputs.check == 'true'
uses: ./.github/workflows/dev-publish.yml
with:
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
TEST_APP_TOKEN: ${{ secrets.TEST_APP_TOKEN }}

0 comments on commit 511c3f6

Please sign in to comment.