Skip to content

Commit

Permalink
ci(dry-run): run release in dry mode with debug
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-koval authored Sep 29, 2019
1 parent 73edc09 commit 6c5dbe4
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 12 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test Release

on: push

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- env:
CI: true
run: npm ci
- env:
CI: true
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release --dry-run --debug
14 changes: 2 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Cache files
.cache
Expand All @@ -12,9 +8,6 @@ yarn-error.log*
# Dependency directories
node_modules

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

Expand All @@ -24,8 +17,5 @@ node_modules
# MacOS-specific files
.DS_Store

# Build output
lib

# Coverage output
coverage
# NPM files
.npmrc

0 comments on commit 6c5dbe4

Please sign in to comment.