Skip to content

Commit

Permalink
reverted release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
t1gr0u committed Mar 4, 2023
1 parent 4fdd0de commit 3fa7727
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Build & Publish'
name: Release

on:
release:
Expand All @@ -9,7 +9,7 @@ jobs:
name: Prepare release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v1

# Build
- name: Build the file
Expand All @@ -19,12 +19,12 @@ jobs:
npm run build
# Upload build file to the releas as an asset.
- name: Upload js to release
uses: svenstaro/upload-release-action@2.0.0
- name: Upload zip to release
uses: svenstaro/upload-release-action@v1-release

with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: /home/runner/work/uv-index-card/uv-index-card/dist/uv-index-card.js
asset_name: uv-index-card.js
tag: ${{ github.ref }}
overwrite: true
overwrite: true

0 comments on commit 3fa7727

Please sign in to comment.