-
-
Notifications
You must be signed in to change notification settings - Fork 479
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
Run successful, Release and tag created, but Missing Files #414
Comments
I tried xresloader's runner, same thing except: It uploaded two smaller (boot.img recovery.img) files to the release The files exist, next step uploads them to telegram via telegram-upload which works |
Same problem, have you solve this yet? |
@sounddrill31 I use jobs:
build:
runs-on: windows-latest
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '8.0'
include-prerelease: true
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: true
token: ${{ secrets.GH_TOKEN }}
- name: Update submodules
run: git submodule update --init --recursive
- name: Setup MSBuild path
uses: microsoft/[email protected]
- name: Build and Publish
run: msbuild /t:restore /t:publish /p:Configuration=Debug /p:PublishDir=${{ github.workspace }}/publish/
- name: Zip publish
run: Compress-Archive -Path "${{ github.workspace }}/publish/*" -DestinationPath "${{ github.workspace }}/publish.zip"
- 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: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ github.workspace }}/publish.zip
asset_name: publish.zip
asset_content_type: application/zip |
Doesn't seem to play well with wildcard |
Okay so I personally gave up and uploaded directly through gh release create. Here's my script, tailored towards my needs: https://github.com/accupara/docker-images/blob/master/aosp/common/upload.sh
Non Crave.io Environment:
I'm not closing it in case you'd like to continue it further. |
for folks that are seeing this issue I'm looking to try and reproduce the issue in particular I'm curious which errors if any you are observing these logs. action-gh-release/src/github.ts Line 162 in 9d7c94c
action-gh-release/src/github.ts Line 178 in 9d7c94c
A notable change recently was dropping node-fetch in preference for github.request #386 which was to address #206 |
Runner: self-hosted runner hosted on Crave.io Devspace CLI(Ubuntu 22.04)
Code: https://github.com/sounddrill31/crave_aosp_builder/blob/6e3f6abdae92e93d1d0fd42e7a797c0c48195669/.github/workflows/selfhosted.yml#L251
Example: https://github.com/sounddrill31/crave_aosp_builder/releases/tag/8108809684
(It was working before I switched to selfhosted)
Any help is appreciated
The text was updated successfully, but these errors were encountered: