Merge branch 'main' of https://github.com/rabstejnek/deduper #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Posit Connect | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- manifest.json | |
jobs: | |
build-manifest: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.11 | |
- name: Install Dependencies | |
run: | | |
python -m pip install -U pip | |
python -m pip install -e ".[app,posit]" | |
- name: Build Posit Manifest | |
run: | | |
make build-posit | |
- name: Commit Changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action [bot]" | |
git commit -am "[skip ci] update Posit Connect manifest file" || echo "No changes to commit." | |
git push origin || true |