Skip to content

Commit

Permalink
Bump marvinpinto/action-automatic-releases from 1.1.1 to 1.2.1 (#74)
Browse files Browse the repository at this point in the history
* Bump marvinpinto/action-automatic-releases from 1.1.1 to 1.2.1

Bumps [marvinpinto/action-automatic-releases](https://github.com/marvinpinto/action-automatic-releases) from 1.1.1 to 1.2.1.
- [Release notes](https://github.com/marvinpinto/action-automatic-releases/releases)
- [Commits](marvinpinto/action-automatic-releases@v1.1.1...v1.2.1)

---
updated-dependencies:
- dependency-name: marvinpinto/action-automatic-releases
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Update releasing workflow for compatibility

Signed-off-by: Ethan Dye <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ethan Dye <[email protected]>
  • Loading branch information
dependabot[bot] and ecdye authored Nov 30, 2021
1 parent 147b2da commit b5022e9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,23 @@ 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: "Archive zram-config"
run: |
export tag="${GITHUB_REF/refs\/tags\//}"
export tag="${{ github.ref_name }}"
sudo apt-get install lzip
git archive --format=tar --prefix=zram-config-${tag}/ ${tag} -o zram-config-${tag}.tar
lzip -9 --keep --verbose --verbose zram-config-${tag}.tar
gpg --detach-sign --armor zram-config-${tag}.tar.lz
gpg --verify zram-config-${tag}.tar.lz.asc zram-config-${tag}.tar.lz
unset tag
shell: bash
- uses: "marvinpinto/action-automatic-releases@v1.1.1"
- uses: "marvinpinto/action-automatic-releases@v1.2.1"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
title: "${{ github.ref_name }}"
automatic_release_tag: "${{ github.ref_name }}"
prerelease: false
files: |
zram-config-*.tar.lz
Expand Down

0 comments on commit b5022e9

Please sign in to comment.