1
0
mirror of https://github.com/bitwarden/web synced 2025-12-30 15:13:21 +00:00

Ran the new linter over the web project and found some errors (#1197)

This commit is contained in:
Joseph Flinn
2021-09-24 09:28:37 -07:00
committed by GitHub
parent f8b0c2ffe4
commit 1df2225a52
3 changed files with 6 additions and 7 deletions

View File

@@ -10,9 +10,8 @@ jobs:
name: Setup
runs-on: ubuntu-20.04
outputs:
release_upload_url: ${{ steps.create_release.outputs.upload_url }}
release_version: ${{ steps.create_tags.outputs.package }}
tag_version: ${{ steps.create_tags.outputs.tag }}
release_version: ${{ steps.version.outputs.package }}
tag_version: ${{ steps.version.outputs.tag }}
steps:
- name: Branch check
run: |
@@ -172,7 +171,7 @@ jobs:
with:
artifacts: prod-build-artifact.zip
commit: ${{ github.sha }}
tag: "${{ needs.version.outputs.tag_version }}"
name: "Version ${{ needs.version.outputs.release_version }}"
tag: "${{ needs.setup.outputs.tag_version }}"
name: "Version ${{ needs.setup.outputs.release_version }}"
body: "<insert release notes here>"
token: ${{ secrets.GITHUB_TOKEN }}