From 203822bc5aaf6126d6ece1822002cd5c44522885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Deuchnord?= Date: Sun, 7 Jun 2020 11:22:04 +0200 Subject: [PATCH] ci: fix release workflow --- .github/workflows/release.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e72dea2..41c9d56 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }}