Update .env.img #736
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: Docker Build and Push | |
on: | |
push: | |
branches: | |
- v2.2-alpha-client-id3 | |
paths: | |
- '.env.img' | |
- 'module_based_image_builder.py' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3' | |
- name: Install Dependencies | |
run: pip install -r requirements.txt | |
- name: List Workspace Contents | |
run: | | |
ls -la $GITHUB_WORKSPACE | |
ls -la $GITHUB_WORKSPACE/scripts | |
cd $GITHUB_WORKSPACE && pwd | |
- name: Change Script Permissions | |
run: chmod +x $GITHUB_WORKSPACE/scripts/module_based_image_builder.py | |
- name: Log in to GitHub Container Registry | |
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin | |
- name: Run Python Script | |
run: python $GITHUB_WORKSPACE/scripts/module_based_image_builder.py | |
env: | |
GITHUB_REPOSITORY: ${{ github.repository }} |