{"id":16162901,"url":"https://github.com/luckyturtledev/artifacts2release","last_synced_at":"2026-03-18T18:10:28.974Z","repository":{"id":175552231,"uuid":"651162040","full_name":"LuckyTurtleDev/artifacts2release","owner":"LuckyTurtleDev","description":null,"archived":false,"fork":false,"pushed_at":"2023-06-15T12:05:26.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T04:24:15.924Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LuckyTurtleDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-08T16:24:05.000Z","updated_at":"2023-06-15T11:12:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"bfdd25fd-7146-42f8-8b0f-a117bb67559b","html_url":"https://github.com/LuckyTurtleDev/artifacts2release","commit_stats":null,"previous_names":["luckyturtledev/artifacts2release"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LuckyTurtleDev/artifacts2release","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LuckyTurtleDev%2Fartifacts2release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LuckyTurtleDev%2Fartifacts2release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LuckyTurtleDev%2Fartifacts2release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LuckyTurtleDev%2Fartifacts2release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LuckyTurtleDev","download_url":"https://codeload.github.com/LuckyTurtleDev/artifacts2release/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LuckyTurtleDev%2Fartifacts2release/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28569236,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T12:50:50.164Z","status":"ssl_error","status_checked_at":"2026-01-19T12:50:42.704Z","response_time":67,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-10T02:33:49.558Z","updated_at":"2026-01-19T13:33:26.068Z","avatar_url":"https://github.com/LuckyTurtleDev.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# artifacts2release\nA small Github Action for publishing artefacts to an existing release.\n\n## Usage\nThis Action should run after creating artifacts,\ninside it own job running on `ubuntu`.\n\nAt the example below you can see an minimal workflow,\nwhich publishs all previous created artifacts to release.\nMake sure your `GITHUB_TOKEN` has enable write access.\nEnsure also artifacts2release runs after the jobs, which are creating the artifacts, by using `needs: [SOME_JOBS]`\nand that it is only run once per Release by checking the release type.\n\n\n```yml\non:\n  push:\n  pull_request:\n  release:\n    types: [released]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - uses: actions/upload-artifact@v3\n        with:\n          name: foo\n          path: foo\n      - uses: actions/upload-artifact@v3\n        with:\n          name: dir\n          path: dir\n    \n  github_publish:\n    runs-on: ubuntu-latest\n    needs: [build]\n    if: ${{ github.event_name == 'release' }}\n    steps:\n    - uses: actions/checkout@v3 #needed to get github.event.release.tag_name \n    - name: Upload Release Artifacts\n      uses: LuckyTurtleDev/artifacts2release@main\n      with:\n        github_token: ${{ secrets.GITHUB_TOKEN }}\n```\n\n## Inputs\n\n| Name              | Required | Description                                                  | Type   | Default                              |\n|:-----------------:|:--------:|:-------------------------------------------------------------|:------:|:------------------------------------:|\n| github_token      |    ✔     | GitHub secret token, usually `${{secrets.GITHUB_TOKEN}}`.   | string |                                      |\n| release_name      |          | Github release to which the artifacts are uploaded.          | string | `${{github.event.release.tag_name}}` |\n| artifacts         |          | Artifacts, which will be uploaded. (default all)             | string |                                      |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluckyturtledev%2Fartifacts2release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluckyturtledev%2Fartifacts2release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluckyturtledev%2Fartifacts2release/lists"}