Browse Source

ci: fix release workflow

tags/v0.9.0
Jérôme Deuchnord 3 years ago
parent
commit
203822bc5a
No known key found for this signature in database GPG Key ID: 72F9D1A7272D53DD
1 changed files with 7 additions and 2 deletions
  1. +7
    -2
      .github/workflows/release.yml

+ 7
- 2
.github/workflows/release.yml View File

@@ -9,6 +9,13 @@ jobs:
name: Create release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup
run: |
sudo apt update
sudo apt install ruby
sudo gem install ronn
- name: Prepare release
id: prepare_release
run: |
@@ -17,8 +24,6 @@ jobs:
changelog="${changelog//$'\n'/'%0A'}"
changelog="${changelog//$'\r'/'%0D'}"
echo "::set-output name=changelog::$changelog"
- name: Checkout code
uses: actions/checkout@v2
- name: Build locales
env:
POEDITOR_API_ACCESS: ${{ secrets.POEDITOR_API_ACCESS }}


Loading…
Cancel
Save