UNPKG

mailosaur

Version:

The Mailosaur Node library lets you integrate email and SMS testing into your continuous integration process.

31 lines (28 loc) 856 B
name: Publish on: release: types: [created] jobs: publish: runs-on: ubuntu-latest timeout-minutes: 10 steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12 registry-url: https://registry.npmjs.org/ - name: version run: | npm --no-git-tag-version --allow-same-version version `git describe --abbrev=0 --tags` - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Notify on Failure uses: skitionek/notify-microsoft-teams@master if: ${{ failure() }} with: webhook_url: ${{ secrets.TEAMS_BUILDS_WEBHOOK }} needs: ${{ toJson(needs) }} job: ${{ toJson(job) }} overwrite: "{ title: `${workflow} failed for ${repository.name}` }"