From f29408de9e54f0567ce43f32336057a9fb719e62 Mon Sep 17 00:00:00 2001 From: matt Date: Wed, 18 Nov 2020 13:06:38 -0700 Subject: [PATCH] correct job indentation --- .../workflows/integration-lint-release.yml | 21 +++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/integration-lint-release.yml b/.github/workflows/integration-lint-release.yml index b89d0a0..7f39f2f 100644 --- a/.github/workflows/integration-lint-release.yml +++ b/.github/workflows/integration-lint-release.yml @@ -69,14 +69,13 @@ jobs: # nothing is put at stake by publishing some extra packages either. draft: false prerelease: false - - - name: Upload Release Asset - if: github.event_name == 'push' - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing its ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - asset_path: ./click-in-text.zip - asset_name: click-in-text.zip - asset_content_type: application/zip + - name: Upload Release Asset + if: github.event_name == 'push' + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing its ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps + asset_path: ./click-in-text.zip + asset_name: click-in-text.zip + asset_content_type: application/zip