{"id":19588126,"url":"https://github.com/isfakeaccount/devvit-upload-github-action","last_synced_at":"2025-10-17T14:27:05.120Z","repository":{"id":183113309,"uuid":"669573319","full_name":"isFakeAccount/devvit-upload-github-action","owner":"isFakeAccount","description":"Github action to upload your Devvit apps","archived":false,"fork":false,"pushed_at":"2024-07-06T06:43:38.000Z","size":37,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-02T03:37:34.600Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/isFakeAccount.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":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-22T18:03:27.000Z","updated_at":"2024-09-05T14:38:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"9c902c66-050c-4d47-8722-0b7f3ce3ef94","html_url":"https://github.com/isFakeAccount/devvit-upload-github-action","commit_stats":null,"previous_names":["isfakeaccount/devvit-upload-github-action"],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isFakeAccount%2Fdevvit-upload-github-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isFakeAccount%2Fdevvit-upload-github-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isFakeAccount%2Fdevvit-upload-github-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isFakeAccount%2Fdevvit-upload-github-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/isFakeAccount","download_url":"https://codeload.github.com/isFakeAccount/devvit-upload-github-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240858608,"owners_count":19869001,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-11-11T08:11:34.670Z","updated_at":"2025-10-17T14:27:00.082Z","avatar_url":"https://github.com/isFakeAccount.png","language":"Python","readme":"# Devvit App Upload GitHub Action\n\nThe Devvit App Upload GitHub Action is a custom GitHub Action designed to streamline the process of uploading apps to the [Devvit](https://developers.reddit.com/) platform. \n\n\n## Inputs\n- `refresh_token`: The refresh token associated with your Devvit account. You have to extract the refresh token manually. For Linux, the refresh token is saved in file `~/.devvit/token`. Copy the whole thing and insert it as Github Secret in your repository. \n\n- `GITHUB_TOKEN`: This is automaticaly created for you provided by GitHub to authenticate and authorize actions within a GitHub Actions workflow. This token is used to updated the `devvit.yaml` after devvit upload.\n\nSee the [Using encrypted secrets](https://docs.github.com/en/actions/security-guides/encrypted-secrets) for more detail on adding secrets to your repository.\n\n## Usage\n\nTo use the Devvit App Upload GitHub Action in your repository, you need to create or update a GitHub Actions workflow file (e.g., .github/workflows/devvit-upload.yml):\n\nYou can use the action on two types of events\n\n### Upload on release\nThe version number will be based on the tag name which should be named like `vMajor.Minor.Patch` (e.g `v0.1.0`)\n\n```yaml\nname: Publish to Devvit\non:\n  push:\n    tags:\n      - 'v[0-9]*.[0-9]*.[0-9]*'\n\njobs:\n  push-to-devvit:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n        with:\n          persist-credentials: false\n\n      - name: Devvit Upload Github Action\n        uses: isFakeAccount/devvit-upload-github-action@v0.0.12\n        with:\n          refresh_token: ${{ secrets.REFRESH_TOKEN }}\n\n      - name: Commit \u0026 Push changes\n        uses: actions-js/push@master\n        with:\n          branch: master\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          message: Bumping the app version number\n\n```\n\n### Upload on push\n```yaml\nname: Publish to Devvit\non:\n  push:\n    branches:\n      - master\n\njobs:\n  push-to-devvit:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n        with:\n          persist-credentials: false\n\n      - name: Devvit Upload Github Action\n        uses: isFakeAccount/devvit-upload-github-action@v0.0.12\n        with:\n          refresh_token: ${{ secrets.REFRESH_TOKEN }}\n          upload_args: \"--bump=minor\"\n\n      - name: Commit \u0026 Push changes\n        uses: actions-js/push@master\n        with:\n          branch: master\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          message: Bumping the app version number\n\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisfakeaccount%2Fdevvit-upload-github-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fisfakeaccount%2Fdevvit-upload-github-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisfakeaccount%2Fdevvit-upload-github-action/lists"}