Skip to content

Commit 0b2150a

Browse files
authored
Merge pull request #23 from bordeux/feature/distribution
fix: add trigger for debian apt distribution
2 parents e2538fe + d3fdf2b commit 0b2150a

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,3 +298,16 @@ jobs:
298298
-H "Accept: application/vnd.github.v3+json" \
299299
https://api.github.com/repos/bordeux/homebrew-tap/actions/workflows/update-formulas.yml/dispatches \
300300
-d '{"ref":"main","inputs":{"project":"tmpltool"}}'
301+
302+
update-apt-repo:
303+
name: Trigger APT Repository Update
304+
needs: [semantic-release, upload-release-assets]
305+
runs-on: ubuntu-latest
306+
steps:
307+
- name: Trigger apt-repo workflow
308+
run: |
309+
curl -X POST \
310+
-H "Authorization: token ${{ secrets.APT_REPO_TOKEN }}" \
311+
-H "Accept: application/vnd.github.v3+json" \
312+
https://api.github.com/repos/bordeux/apt-repo/actions/workflows/update-repo.yml/dispatches \
313+
-d '{"ref":"main","inputs":{"project":"bordeux/tmpltool"}}'

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,5 @@ node_modules/
9292
npm-debug.log*
9393
yarn-debug.log*
9494
yarn-error.log*
95+
bun.log*
9596
# Note: package-lock.json is NOT ignored - it's required for npm ci in CI/CD

0 commit comments

Comments
 (0)