Skip to content

Commit

Permalink
[cr] template for creating a release in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jewbetcha committed Aug 5, 2024
1 parent 97637cb commit f6be150
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,39 @@ jobs:

- name: Run tests
run: npm run test
# build:
# runs-on: ubuntu-latest

# steps:
# - name: Checkout code
# uses: actions/checkout@v2

# - name: Use Node.js
# uses: actions/setup-node@v2
# with:
# node-version: '20'

# - name: Install dependencies
# run: npm install

# - name: Build and package release
# run: npm run build

# - name: Upload artifact
# uses: actions/upload-artifact@v2
# with:
# name: release-artifact
# path: path/to/artifact

# - name: Create release
# uses: actions/create-release@v1
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# tag_name: ${{ github.run_number }}
# release_name: Release ${{ github.run_number }}
# draft: false
# prerelease: false
# body: |
# Release notes:
# - This is a new release
# artifacts: release-artifact

0 comments on commit f6be150

Please sign in to comment.