diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-17 19:45:31 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-17 19:45:31 +0300 |
commit | a5e8c46c2738a506037ed6e2bd9abb1b750f0df3 (patch) | |
tree | e505e8c3225a0fe2b2206181dbd6f7e075a05f51 | |
parent | workflows/debian: error out if no files to upload (diff) | |
download | linux-status-a5e8c46c2738a506037ed6e2bd9abb1b750f0df3.tar.gz linux-status-a5e8c46c2738a506037ed6e2bd9abb1b750f0df3.zip |
workflows/ppa: rename the workflow
-rw-r--r-- | .github/workflows/ppa.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ppa.yml b/.github/workflows/ppa.yml index cdae2bb..afc7790 100644 --- a/.github/workflows/ppa.yml +++ b/.github/workflows/ppa.yml @@ -1,4 +1,4 @@ -name: Upload to PPA +name: Publish (Launchpad) on: push: @@ -16,8 +16,8 @@ jobs: - name: Import GPG key uses: crazy-max/ghaction-import-gpg@v3 with: - gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} - passphrase: ${{ secrets.GPG_PASSPHRASE }} + gpg-private-key: '${{ secrets.GPG_PRIVATE_KEY }}' + passphrase: '${{ secrets.GPG_PASSPHRASE }}' - name: Install dependencies run: cd debian && sudo make deps - name: Create cowbuilder image |