Skip to content

Commit

Permalink
Remove deploy develop workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eciavatta committed Dec 7, 2022
1 parent 77b7858 commit be5b5a5
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/test-deploy.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,28 +54,3 @@ jobs:
run: npx prettier --ignore-unknown --check 'src/**'
- name: Build frontend
run: yarn build
build-push-develop-image:
runs-on: ubuntu-latest
needs: [test-backend, test-frontend]
if: ${{ github.ref == 'refs/heads/develop' }}
permissions:
contents: read
packages: write
env:
REGISTRY: ghcr.io
IMAGE_NAME: eciavatta/caronte
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker develop image
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ env.IMAGE_NAME }}:develop

0 comments on commit be5b5a5

Please sign in to comment.