Skip to content

Commit

Permalink
fix: pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
janek26 committed Feb 3, 2022
1 parent 2060b48 commit c65e9eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Main
name: Release

on:
push:
Expand All @@ -11,7 +11,7 @@ jobs:
permissions:
contents: write
env:
FILENAME: argent-extension-{{ github.ref_name }}.zip
FILENAME: argent-extension-${{ github.ref_name }}.zip
steps:
- uses: actions/checkout@v2
- name: Setup Node
Expand All @@ -21,10 +21,10 @@ jobs:
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn --cwd packages/playground export
- run: zip -r {{ env.FILENAME }} packages/extension/dist/*
- run: zip -r ${{ env.FILENAME }} packages/extension/dist/*
- name: Release
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files: |
{{ env.FILENAME }}
${{ env.FILENAME }}
2 changes: 1 addition & 1 deletion packages/extension/src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Argent X StarkNet Wallet",
"description": "The security of Ethereum with the scale of StarkNet",
"version": "2.1.2",
"version": "2.1.3",
"manifest_version": 2,
"browser_action": {
"default_icon": {
Expand Down

0 comments on commit c65e9eb

Please sign in to comment.