Skip to content

Commit

Permalink
updated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
perpetualcacophony committed Jul 25, 2024
1 parent 7e17c11 commit cd5a845
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ name: CI

on:
push:
paths-ignore: [ "README.md" ]
branches: [ "main" ]
paths-ignore: [ README.md ]
branches: [ main ]

pull_request:
types: [opened, synchronize, reopened]

env:
CARGO_TERM_COLOR: always
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release QA
on:
push:
branches:
- release/v[0-9]**
- release/v*

env:
VERSION: ${{ github.ref_name }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Package release

on:
push:
tags: [ 'v[0-9]**' ]
tags: [ v* ]

env:
# Use docker.io for Docker Hub if empty
Expand Down Expand Up @@ -70,6 +70,8 @@ jobs:
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934 # v5.0.0
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=semver,pattern={{version}}
# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
Expand Down

0 comments on commit cd5a845

Please sign in to comment.