Skip to content

Update GH release workflow #16

Update GH release workflow

Update GH release workflow #16

Workflow file for this run

name: Create GitHub Release
env:
NODE_VERSION: 18
# Workflow need write access to the repository to create a GitHub release
permissions:
contents: write
on:
push:
tags:
- v*
# Workflow need write access to the repository to create a release
permissions:

Check failure on line 16 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
contents: write
# Make sure that only one release workflow runs at a time
concurrency:
group: release
jobs:
release:
name: Create GitHub release
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
registry-url: https://registry.npmjs.org
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check TypeScript types
run: yarn check-types
- name: Run Markdownlint
run: yarn lint:md
- name: Run ESLint
run: yarn lint:ts
- name: Run Jest tests
run: yarn test
- name: Run Rollup build
run: yarn build
- name: Pack files
run: yarn pack --filename aglint.tgz
- name: Release on GitHub
uses: softprops/action-gh-release@v1
with:
files: |
aglint.tgz
dist/aglint.iife.min.js
dist/aglint.umd.min.js
draft: false
prerelease: false
body: See [CHANGELOG.md](./CHANGELOG.md) for the list of changes.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
notify:
name: Send Slack notification
needs:
- release
if:
${{ always() &&
(
github.event_name == 'push' ||
github.event_name == 'workflow_dispatch'
)
}}
runs-on: ubuntu-latest
steps:
- name: Conclusion
uses: technote-space/workflow-conclusion-action@v3
- name: Send Slack notification
uses: 8398a7/action-slack@v3
with:
status: ${{ env.WORKFLOW_CONCLUSION }}
fields: workflow, repo, message, commit, author, eventName, ref
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}