{"id":15163129,"url":"https://github.com/devmatic-it/debrepo-action","last_synced_at":"2026-01-21T19:34:50.887Z","repository":{"id":129933972,"uuid":"226135809","full_name":"devmatic-it/debrepo-action","owner":"devmatic-it","description":"GitHub action to create a private Debian  package repository hosted on Github pages.","archived":false,"fork":false,"pushed_at":"2019-12-13T08:09:15.000Z","size":2215,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-15T04:06:41.896Z","etag":null,"topics":["debian","debian-packages","github-action","github-page","repository"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devmatic-it.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-05T15:44:48.000Z","updated_at":"2024-12-18T18:25:37.000Z","dependencies_parsed_at":"2023-04-05T23:53:50.221Z","dependency_job_id":null,"html_url":"https://github.com/devmatic-it/debrepo-action","commit_stats":{"total_commits":76,"total_committers":3,"mean_commits":"25.333333333333332","dds":0.4736842105263158,"last_synced_commit":"5b83636a757bec333549d93c9f59f21f23bd9669"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/devmatic-it/debrepo-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmatic-it%2Fdebrepo-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmatic-it%2Fdebrepo-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmatic-it%2Fdebrepo-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmatic-it%2Fdebrepo-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devmatic-it","download_url":"https://codeload.github.com/devmatic-it/debrepo-action/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devmatic-it%2Fdebrepo-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28641274,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T18:04:35.752Z","status":"ssl_error","status_checked_at":"2026-01-21T18:03:55.054Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["debian","debian-packages","github-action","github-page","repository"],"created_at":"2024-09-27T02:04:10.688Z","updated_at":"2026-01-21T19:34:50.866Z","avatar_url":"https://github.com/devmatic-it.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Debrepo Github action\n\nThis action creates a private Debian Repository using Github pages.\n\n## Evironment Variables\n\n### `GITHUB_TOKEN`\n\n**Required** GitHub OAUTH2 TOKEN, should be set to ${{secrets.GITHUB_TOKEN}}\n\n### REPOSITORY\n\n**Required** path in the master branch where to store the GitHub pages. It is recommended to use the following path './docs/debian'\n\n### `NAME`\n\n**Required** name of the debian package, for example 'debcvescan'\n\n### `ARCH`\n\n**Required**  CPU architecture to use, for example 'amd64'\n\n### `OS`\n\n**Required** Operating system to use, for example 'linux'\n\n### `CODENAME`\n\n**Required** Debian release code name for example 'buster'\n\n### `PRIVATE_KEY`\n\n**Required** Private GPG key used to sign the Debian packages exported with empty password\n\n### `PUBLIC_KEY`\n\n**Required** Public GPG key used to sign the Debian packages\n\n## Create and distribute GPG keys\n\n1. Create private key without password `gpg --gen-key`\n2. Export key without password `gpg –output PUBLIC.KEY –armor –export \u003cemail_of_key\u003e`\n3. Export private key: `gpg –output PRIVATE.KEY –armor –export-secret-key \u003cemail_of_key\u003e`\n4. Create GitHub secrets `PUBLIC_KEY` and paste content of PUBLIC.KEY file. See details in \u003chttps://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets\u003e\n5. Create GitHub secrets `PRIVATE_KEY` and paste content of PRIVATE.KEY file. See details in \u003chttps://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets\u003e\n\n## Example usage\n\n```yaml\nname: DebianRepository\non: [push]\n\njobs:\n  release:\n    name: Release on GitHub\n    runs-on: ubuntu-latest\n    steps:\n      - name: Check out code\n        uses: actions/checkout@v1\n      - name: Create Debian repository test\n        uses: ./\n        env:\n          GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}\n          PRIVATE_KEY: ${{secrets.PRIVATE_KEY}}\n          PUBLIC_KEY: ${{secrets.PUBLIC_KEY}}\n          REPOSITORY: './docs/debian'\n          NAME: 'debcvescan'\n          ARCH: 'amd64'\n          OS: 'linux'\n          CODENAME: 'buster'\n```\n\n## Credits\n\n- Creating GutHub Actions with Docker \u003chttps://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-a-docker-container-action\u003e\n- article \u003chttps://pmateusz.github.io/linux/2017/06/30/linux-secure-apt-repository.html\u003e\n- Wiki \u003chttps://wiki.debian.org/DebianRepository/SetupWithReprepro\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevmatic-it%2Fdebrepo-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevmatic-it%2Fdebrepo-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevmatic-it%2Fdebrepo-action/lists"}