Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cpressland committed Feb 19, 2024
1 parent 7d48938 commit 41319f2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 34 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ name: ci

on:
push:
branches: [ develop ]
branches: [ master ]
pull_request:
branches: [ develop ]
branches: [ master ]

jobs:
tests:
name: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.9"
- run: pip install pipenv
Expand All @@ -24,19 +24,19 @@ jobs:
- run: isort --check --line-length 120 --profile black .
create_release:
if: github.ref == 'refs/heads/develop' && github.event_name == 'push'
name: create_dev_release
name: create_release
runs-on: ubuntu-latest
needs: [ tests ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: echo "::set-output name=date::$(date +'%FT%H%M%SZ')"
id: date
- uses: docker/login-action@v1
- uses: docker/login-action@v3
with:
registry: binkcore.azurecr.io
username: binkcore
password: ${{ secrets.ACR_BINKCORE_PASSWORD }}
- uses: docker/build-push-action@v2
- uses: docker/build-push-action@v5
with:
push: true
tags: |
Expand Down
26 changes: 0 additions & 26 deletions .github/workflows/prod_release.yaml

This file was deleted.

0 comments on commit 41319f2

Please sign in to comment.