rm freelance for publish #7
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main # This triggers the workflow on pushes to the main branch | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest # This sets the environment for the job | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v4 # This uses the checkout action | |
| with: | |
| submodules: true # Ensures submodules are included | |
| token: ${{ secrets.GH_PROJECTS_USE_PAT }} # This references the secret you created | |
| - name: Build your project | |
| run: echo "Building the project" # Replace this with your actual build commands |