Skip to content

Commit

Permalink
fix: consolidate CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
paddatrapper committed Jun 30, 2022
1 parent fefc5df commit 96b6e94
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 33 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/publish.yml

This file was deleted.

17 changes: 16 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch: {}

jobs:
semantic-release:
release:
runs-on: ubuntu-latest

env:
Expand All @@ -22,3 +22,18 @@ jobs:
id: semantic
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Login to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 96b6e94

Please sign in to comment.