Skip to content

Commit

Permalink
chore: install release please (#357)
Browse files Browse the repository at this point in the history
Signed-off-by: Gustavo Inacio <[email protected]>
  • Loading branch information
gusinacio authored Oct 9, 2024
1 parent 9e44ad4 commit d5c3aca
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 8 deletions.
38 changes: 30 additions & 8 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ name: Build and upload Docker image

on:
push:
tags:
- "*.*.*"
branches:
- main
pull_request:
Expand All @@ -14,9 +12,22 @@ env:
REGISTRY: ghcr.io/${{ github.repository_owner }}

jobs:
builds-linux:
release-please:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
outputs:
indexer-service-rs: ${{ steps.release-please.outputs.service--tag_name }}
indexer-tap-agent: ${{ steps.release-please.outputs.tap-agent--tag_name }}
steps:
- name: Release please
id: release-please
uses: googleapis/release-please-action@v4

builds-linux:
runs-on: ubuntu-latest
needs: release-please
strategy:
matrix:
target: [indexer-service-rs, indexer-tap-agent]
Expand All @@ -27,7 +38,18 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: Extract version from tag
id: extract_version
run: |
TAG_NAME="${{ needs.release-please.outputs[matrix.target] }}"
# Extract the version part from tags with prefix "${{ matrix.target }}-" using a regex pattern
if [[ "$TAG_NAME" =~ ^${{ matrix.target }}-(.*)$ ]]; then
VERSION="${BASH_REMATCH[1]}"
else
VERSION=""
fi
echo $VERSION
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Docker meta
id: meta
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5
Expand All @@ -40,10 +62,10 @@ jobs:
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}.{{minor}}.{{patch}}
type=semver,pattern={{major}}
type=semver,pattern={{version}},value=${{steps.extract_version.outputs.version}}
type=semver,pattern={{major}}.{{minor}},value=${{steps.extract_version.outputs.version}}
type=semver,pattern={{major}}.{{minor}}.{{patch}},value=${{steps.extract_version.outputs.version}}
type=semver,pattern={{major}},value=${{steps.extract_version.outputs.version}}
type=sha
- name: Log in to the Container registry
Expand Down
6 changes: 6 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"tap-agent":"1.0.0",
"common":"1.0.0",
"config":"1.0.0",
"service":"1.0.0"
}
12 changes: 12 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/refs/heads/main/schemas/config.json",
"bootstrap-sha": "18e2609caf42faa547e6f431170358382213c763",
"release-type": "rust",
"plugins": ["cargo-workspace"],
"packages": {
"common": {},
"config": {},
"service": {},
"tap-agent": {}
}
}

0 comments on commit d5c3aca

Please sign in to comment.