Skip to content

Workflow file for this run

name: Build this project using Pygbag
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: install dependencies
uses: actions/checkout@v2
run: |
echo "Installing pygbag"
python3 -m pip install pygbag
echo "pygbag success!"
echo "building the project"
python -m pygbag --build $GITHUB_WORKSPACE/py-singl-slider/main.py
echo "DONE"
- name: create release
uses: ncipollo/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GH_CREDENTIALS }}
tag: ${{ github.ref_name }}