Skip to content

Slack Send v2.0.0

Slack Send v2.0.0 #4

Workflow file for this run

name: Publish
on:
release:
types: [published, edited]
jobs:
build:
name: Build and tag a new version
runs-on: ubuntu-latest
steps:
- name: Checkout the current code
uses: actions/checkout@v4
with:
ref: ${{ github.event.release.tag_name }}
- name: Configure the runtime node
uses: actions/setup-node@v4
with:
cache: npm
cache-dependency-path: package-lock.json
node-version-file: .nvmrc
- name: Install project dependencies
run: npm ci
- name: Build a production release
run: npm run build
- name: Distribute the latest tagged release
uses: teunmooij/[email protected]
with:
template: javascript-action
env:
GITHUB_TOKEN: ${{ github.token }}