Skip to content

Commit

Permalink
Merge pull request #2 from nicolaerosia/typo-fix
Browse files Browse the repository at this point in the history
s/unsinged/unsigned
  • Loading branch information
rajsameer authored Apr 6, 2021
2 parents fa76623 + c93e2f2 commit 6571e84
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Release Unsinged
name: Release Unsigned

on:
push:
tags:
- "unsinged-v*.*.*" # Run workflow on version tags, e.g. v1.0.0.
- "unsigned-v*.*.*" # Run workflow on version tags, e.g. v1.0.0.

jobs:
release:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
echo "::set-output name=path::release_notes.md"
- name: Check package version
run: if [ "unsinged-v${{ steps.metadata.outputs.plugin-version }}" != "${{ steps.metadata.outputs.github-tag }}" ]; then printf "\033[0;31mPlugin version doesn't match tag name\033[0m\n"; exit 1; fi
run: if [ "unsigned-v${{ steps.metadata.outputs.plugin-version }}" != "${{ steps.metadata.outputs.github-tag }}" ]; then printf "\033[0;31mPlugin version doesn't match tag name\033[0m\n"; exit 1; fi

- name: Package plugin
id: package-plugin
Expand Down

0 comments on commit 6571e84

Please sign in to comment.