1
0
Fork 0
mirror of synced 2024-06-01 10:09:49 +12:00

add more TODO comments to github actions

This commit is contained in:
Nick Sweeting 2020-12-11 21:26:37 +02:00
parent d67d212682
commit 9ee52b52b4
3 changed files with 15 additions and 17 deletions

View file

@ -17,19 +17,12 @@ jobs:
submodules: true
fetch-depth: 1
# - name: Set up Python
# uses: actions/setup-python@v1
# with:
# python-version: 3.9
# architecture: x64
- name: Install packaging dependencies
run: |
sudo apt install -y \
python3 python3-dev python3-pip python3-venv python3-all \
dh-python debhelper devscripts dput software-properties-common \
python3-distutils python3-setuptools python3-wheel python3-stdeb
# pip3 install --upgrade pip setuptools wheel stdeb
- name: Build Debian/Apt sdist_dsc
run: |
@ -62,14 +55,14 @@ jobs:
archivebox add 'https://example.com'
archivebox status
# - name: Commit files
# - name: Commit built package
# run: |
# cd deb_dist/
# git config --local user.email "action@github.com"
# git config --local user.name "GitHub Action"
# git commit -m "Debian package autobuild" -a
# - name: Push changes
# - name: Push build to Github
# uses: ad-m/github-push-action@master
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
@ -77,8 +70,7 @@ jobs:
# branch: ${{ github.ref }}
# directory: deb_dist
# TODO: push debian package to launchpad PPA
# - name: Push to launchpad
# - name: Push build to Launchpad PPA
# run: |
# debsign -k "$PGP_KEY_ID" "deb_dist/archivebox_${VERSION}-${DEBIAN_VERSION}_source.changes"
# dput archivebox "deb_dist/archivebox_${VERSION}-${DEBIAN_VERSION}_source.changes"

View file

@ -15,6 +15,8 @@ jobs:
submodules: true
fetch-depth: 1
# TODO: modify archivebox.rb to update src url, hashes, and dependencies
- name: Build Homebrew Bottle
run: |
pip3 install --upgrade pip setuptools wheel
@ -30,14 +32,14 @@ jobs:
archivebox version
archivebox status
# - name: Commit files
# - name: Commit built package
# run: |
# cd brew_dist/
# git config --local user.email "action@github.com"
# git config --local user.name "GitHub Action"
# git commit -m "Homebrew package autobuild" -a
# - name: Push changes
# - name: Push build to Github
# uses: ad-m/github-push-action@master
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
@ -45,4 +47,4 @@ jobs:
# branch: ${{ github.ref }}
# directory: brew_dist
# TODO: push bottle to Github and open homebrew core PR with latest changes
# TODO: push bottle homebrew core PR with latest changes

View file

@ -39,14 +39,14 @@ jobs:
archivebox version
archivebox status
# - name: Commit files
# - name: Commit built package
# run: |
# cd pip_dist/
# git config --local user.email "action@github.com"
# git config --local user.name "GitHub Action"
# git commit -m "Pip package autobuild" -a
# - name: Push changes
# - name: Push build to Github
# uses: ad-m/github-push-action@master
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
@ -54,4 +54,8 @@ jobs:
# branch: ${{ github.ref }}
# directory: pip_dist
# TODO: push to PyPI with twine
# - name: Push build to PyPI
# run: |
# cd pip_dist/
# python3 -m twine upload --repository testpypi pip_dist/*.{whl,tar.gz}
# python3 -m twine upload --repository pypi pip_dist/*.{whl,tar.gz}