Skip to content

Commit

Permalink
[GH-169] Fix create-release.yml Workflow Issues and Update Poetry Tox…
Browse files Browse the repository at this point in the history
… Command Syntax (#172)

* fix(ci): Fix create-release.yml workflow
  • Loading branch information
soufianerafik authored Jan 17, 2025
1 parent 5302814 commit 0466529
Showing 1 changed file with 23 additions and 8 deletions.
31 changes: 23 additions & 8 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches:
- main
- dry-run-create-release
workflow_dispatch:

env:
STEP_SCRIPTS: ${{ github.workspace }}/.github/steps/create-release
Expand Down Expand Up @@ -40,31 +41,45 @@ jobs:
- uses: UWIT-IAM/actions/[email protected]
with:
gcloud-token: ${{ secrets.GCR_TOKEN }}
- name: Install poetry
uses: abatilo/[email protected]

- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install Poetry with pip
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry --version
- run: |
sudo apt-get -y install jq
poetry run pip install uw-it-build-fingerprinter tox
- run: |
poetry run pip install tox uw-it-build-fingerprinter
- name: Validate Build and Test
run: |
poetry run tox -e build-layers \
-- -t ${{ env.version }} --release ${{ env.version }} --cache \
-- -- -t ${{ env.version }} --release ${{ env.version }} --cache \
--build-arg HUSKY_DIRECTORY_VERSION=${{ env.version }}
poetry run tox -e unit-tests
# Build layers with the -k option to avoid installing a lot of
# unnecessary dependencies. We can also skip black/flake8 for
# this phase, because the code has already been accepted into
# the repository.
name: Validate build

- name: Create release ${{ needs.configure-release.outputs.version }}
uses: ncipollo/release-action@v1
with:
tag: ${{ needs.configure-release.outputs.version }}
if: github.ref == 'refs/heads/main'

- run: docker push gcr.io/uwit-mci-iam/husky-directory:${{ env.version }}
- name: Push Docker image
run: docker push gcr.io/uwit-mci-iam/husky-directory:${{ env.version }}
if: github.ref == 'refs/heads/main'

- run: |
- name: Deploy
run: |
./scripts/deploy.sh -t dev -v ${{ env.version }} \
${{ github.ref != 'refs/heads/main' && '-x' || '' }}

0 comments on commit 0466529

Please sign in to comment.