-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GH-169] Fix create-release.yml Workflow Issues and Update Poetry Tox…
… Command Syntax (#172) * fix(ci): Fix create-release.yml workflow
- Loading branch information
1 parent
5302814
commit 0466529
Showing
1 changed file
with
23 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
branches: | ||
- main | ||
- dry-run-create-release | ||
workflow_dispatch: | ||
|
||
env: | ||
STEP_SCRIPTS: ${{ github.workspace }}/.github/steps/create-release | ||
|
@@ -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' || '' }} |