Skip to content

Commit

Permalink
use a release not an artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
bpcreech authored Feb 4, 2024
1 parent 409a5a2 commit c285c26
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,17 @@ jobs:
- run: npm install
- run: npm run build

- name: Upload artifacts
uses: actions/upload-artifact@v4
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: production-files
path: ./dist
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}

# - name: Upload artifacts
# uses: actions/upload-artifact@v4
# with:
# name: production-files
# path: ./dist

0 comments on commit c285c26

Please sign in to comment.