Merge pull request #54 from UCBoulder/dependabot/pip/spec/receptorctl… #30
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: Deploy | |
concurrency: deploy | |
on: | |
push: | |
branches: [devel] | |
jobs: | |
release: | |
runs-on: ubuntu-22.04 | |
name: Build and Deploy | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: "3.9" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r build/requirements.txt | |
- name: Downcase repo path | |
run: | | |
echo "REPO=ghcr.io/${GITHUB_REPOSITORY,,}" >>${GITHUB_ENV} | |
- name: Grab shortened SHA | |
run: | | |
echo "SHORT_SHA=${GITHUB_SHA::7}" >>${GITHUB_ENV} | |
- name: Build image | |
run: | | |
ansible-builder build -v3 --tag=${{ env.REPO }}/awx-ee:${{ env.SHORT_SHA }} | |
- name: Push image to GH packages | |
run: | | |
podman tag ${{ env.REPO }}/awx-ee:${{ env.SHORT_SHA }} ${{ env.REPO }}/awx-ee:latest | |
podman login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} | |
podman push ${{ env.REPO }}/awx-ee:${{ env.SHORT_SHA }} | |
podman push ${{ env.REPO }}/awx-ee:latest |