Update README.md #1062
Workflow file for this run
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: dao-analyzer CI | |
on: [push] | |
jobs: | |
dao_analyzer_components: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: dao_analyzer_components | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
- name: Install dash and other deps | |
run: pip install -r requirements.txt | |
- name: Runtime versions | |
run: | | |
node --version | |
npm --version | |
- name: 📦 Install npm dependencies and build package | |
run: | | |
npm clean-install | |
npm run build | |
- name: Validate init | |
run: npm run validate-init | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dao_analyzer_components | |
path: | | |
./dao_analyzer_components/dao_analyzer_components/ | |
!**/__pycache__ | |
dao_analyzer_components_publish: | |
runs-on: ubuntu-latest | |
needs: [dao_analyzer_components] | |
if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master' | |
defaults: | |
run: | |
working-directory: dao_analyzer_components | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
registry-url: 'https://registry.npmjs.org' | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: dao_analyzer_components | |
path: ./dao_analyzer_components/dao_analyzer_components/ | |
- name: Publish package | |
run: npx is-published || npm publish --ignore-scripts | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
testing_python: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.8","3.9","3.10", "3.11"] | |
env: | |
DEBUG: TRUE | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip wheel tox tox-gh-actions | |
- name: Test with tox | |
run: tox | |
package: | |
runs-on: ubuntu-latest | |
needs: [dao_analyzer_components, testing_python] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Downloading tags to gen version name | |
- uses: actions/download-artifact@v3 | |
with: | |
name: dao_analyzer_components | |
path: ./dao_analyzer_components/dao_analyzer_components/ | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
- name: Install build deps | |
run: python -m pip install --upgrade pip build wheel | |
- name: Build package | |
run: python -m build | |
- name: Archive built package | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: ./dist/ | |
pypi: | |
runs-on: ubuntu-latest | |
needs: [package,dao_analyzer_components_publish] | |
if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master' | |
steps: | |
- name: Download built package | |
uses: actions/download-artifact@v3 | |
with: | |
name: dist | |
path: ./dist/ | |
- name: Publish package | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
docker: | |
runs-on: ubuntu-latest | |
needs: [package,dao_analyzer_components_publish] | |
if: github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
steps: | |
- uses: actions/checkout@master | |
- name: Getting built package | |
uses: actions/download-artifact@v3 | |
with: | |
name: dist | |
path: ./dist/ | |
- name: Get DAOA_VERSION and PYTHON_PKG | |
run: | | |
pip install pkginfo | |
PYTHON_PKG=$(ls -t dist/*.whl | head -1) | |
echo PYTHON_PKG="$PYTHON_PKG" >> $GITHUB_ENV | |
echo DAOA_VERSION=$(python -c "from pkginfo import Wheel as W; print(W(r'$PYTHON_PKG').version)") >> $GITHUB_ENV | |
echo CREATED=$(date --rfc-3339=seconds) >> $GITHUB_ENV | |
echo REVISION=$(git rev-parse HEAD) >> $GITHUB_ENV | |
- name: Check env variables | |
run: | | |
echo PYTHON_PKG: $PYTHON_PKG && [ ! -z "$PYTHON_PKG" ] | |
echo DAOA_VERSION: $DAOA_VERSION && [ ! -z "$DAOA_VERSION" ] | |
- name: "Get tag names" | |
run: | | |
branch=$(git branch --show-current) | |
[[ "$branch" = "master" ]] && branch=latest | |
echo "::set-output name=tag::$branch" | |
echo "::set-output name=tag_sv::v$DAOA_VERSION" | |
id: tags | |
- name: Publish to Docker Hub | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
env: | |
DOCKER_BUILDKIT: "1" | |
with: | |
name: grasia/dao-analyzer | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
buildargs: DAOA_VERSION,PYTHON_PKG,CREATED,REVISION | |
tags: ${{ steps.tags.outputs.tag }},${{ steps.tags.outputs.tag_sv }} | |
- name: Publish to Github Registry | |
uses: elgohr/Publish-Docker-Github-Action@v5 | |
env: | |
DOCKER_BUILDKIT: "1" | |
with: | |
name: grasia/dao-analyzer | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
registry: ghcr.io | |
buildargs: DAOA_VERSION,PYTHON_PKG,CREATED,REVISION | |
tags: ${{ steps.tags.outputs.tag }},${{ steps.tags.outputs.tag_sv }} | |
- name: Trigger update in server | |
continue-on-error: true | |
run: | | |
curl -f -H "Authorization: Bearer ${{ secrets.WATCHTOWER_HTTP_API_TOKEN }}" dao-analyzer.science:8042/v1/update |