Skip to content

Check the folder content in new version of the agent on macos #797

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jun 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Revert "disable pushing autoupdate file on s3 for testing purposes"
This reverts commit 61373da.
  • Loading branch information
umbynos committed Jun 9, 2023
commit 12f5e275c886b113c7072f76f00f8d592c6b8b8f
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ jobs:
release_name: ${{ github.ref }}
body: ${{ steps.release_body.outputs.RBODY}}
draft: false
prerelease: true
prerelease: ${{ needs.build.outputs.prerelease }}

- name: Upload release files on Github
uses: svenstaro/upload-release-action@v2
Expand All @@ -586,8 +586,8 @@ jobs:
run: aws s3 sync release/ s3://${{ secrets.DOWNLOADS_BUCKET }}${{ env.TARGET }}
if: ${{ needs.build.outputs.prerelease != 'true' }}

# - name: Update version file (used by frontend to trigger autoupdate and create filename)
# run: |
# echo {\"Version\": \"${GITHUB_REF##*/}\"} > /tmp/agent-version.json
# aws s3 cp /tmp/agent-version.json s3://${{ env.VERSION_TARGET }}
# if: ${{ needs.build.outputs.prerelease != 'true' }}
- name: Update version file (used by frontend to trigger autoupdate and create filename)
run: |
echo {\"Version\": \"${GITHUB_REF##*/}\"} > /tmp/agent-version.json
aws s3 cp /tmp/agent-version.json s3://${{ env.VERSION_TARGET }}
if: ${{ needs.build.outputs.prerelease != 'true' }}