Skip to content

Commit ec86060

Browse files
committed
add github push code to builder CI actions
1 parent 4cda0d4 commit ec86060

3 files changed

Lines changed: 47 additions & 2 deletions

File tree

.github/workflows/debian.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
- name: Build Debian/Apt sdist_dsc
3232
run: |
3333
python3 setup.py --command-packages=stdeb.command \
34-
sdist_dsc
34+
sdist_dsc
3535
3636
- name: Build Debian/Apt bdist_deb
3737
run: |
3838
python3 setup.py --command-packages=stdeb.command \
39-
bdist_deb
39+
bdist_deb
4040
4141
- name: Install archivebox from deb
4242
run: |
@@ -50,6 +50,21 @@ jobs:
5050
archivebox version
5151
archivebox status
5252
53+
# - name: Commit files
54+
# run: |
55+
# cd deb_dist/
56+
# git config --local user.email "action@github.com"
57+
# git config --local user.name "GitHub Action"
58+
# git commit -m "Debian package autobuild" -a
59+
60+
# - name: Push changes
61+
# uses: ad-m/github-push-action@master
62+
# with:
63+
# github_token: ${{ secrets.GITHUB_TOKEN }}
64+
# repository: ArchiveBox/debian-archivebox
65+
# branch: ${{ github.ref }}
66+
# directory: deb_dist
67+
5368
# TODO: push debian package to launchpad PPA
5469
# - name: Push to launchpad
5570
# run: |

.github/workflows/homebrew.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,19 @@ jobs:
3030
archivebox version
3131
archivebox status
3232
33+
# - name: Commit files
34+
# run: |
35+
# cd brew_dist/
36+
# git config --local user.email "action@github.com"
37+
# git config --local user.name "GitHub Action"
38+
# git commit -m "Homebrew package autobuild" -a
39+
40+
# - name: Push changes
41+
# uses: ad-m/github-push-action@master
42+
# with:
43+
# github_token: ${{ secrets.GITHUB_TOKEN }}
44+
# repository: ArchiveBox/homebrew-archivebox
45+
# branch: ${{ github.ref }}
46+
# directory: brew_dist
47+
3348
# TODO: push bottle to Github and open homebrew core PR with latest changes

.github/workflows/pip.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,19 @@ jobs:
3939
archivebox version
4040
archivebox status
4141
42+
# - name: Commit files
43+
# run: |
44+
# cd pip_dist/
45+
# git config --local user.email "action@github.com"
46+
# git config --local user.name "GitHub Action"
47+
# git commit -m "Pip package autobuild" -a
48+
49+
# - name: Push changes
50+
# uses: ad-m/github-push-action@master
51+
# with:
52+
# github_token: ${{ secrets.GITHUB_TOKEN }}
53+
# repository: ArchiveBox/pip-archivebox
54+
# branch: ${{ github.ref }}
55+
# directory: pip_dist
56+
4257
# TODO: push to PyPI with twine

0 commit comments

Comments
 (0)