Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Sep 21, 2023
1 parent 79c2878 commit 909177f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Build
on:
push:
tags: ["*"]
workflow_dispatch:

jobs:
build:
Expand All @@ -18,7 +19,11 @@ jobs:
- name: Install bower
run: npm install -g bower
- name: Import PGP Key
run: gpg --batch --import - <<< ${{ secrets.PGP_KEY }}
run: |
export GPG_TTY=$(tty)
gpg --batch --import - <<< $PGP_KEY
env:
PGP_KEY: ${{ secrets.PGP_KEY }}
- name: Write version
id: version
run: |
Expand Down

0 comments on commit 909177f

Please sign in to comment.