diff --git a/.github/workflows/.github-actions-release.yml b/.github/workflows/.github-actions-release.yml index 039f6baca..820dbc41a 100644 --- a/.github/workflows/.github-actions-release.yml +++ b/.github/workflows/.github-actions-release.yml @@ -8,16 +8,17 @@ on: jobs: create_release: - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - draft: false - prerelease: false + name: Create release + runs-on: ubuntu-latest + steps: + - name: Create release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} linux: runs-on: ubuntu-latest