Update tags in compose files #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Update tags in compose files | |
on: | |
workflow_dispatch: | |
inputs: | |
target_branch: | |
description: Target branch for the update. | |
required: true | |
image_tag: | |
description: Docker image tag to be replaced with. | |
required: true | |
jobs: | |
release: | |
name: Release repository | |
runs-on: ubuntu-22.04 | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.inputs.target_branch }} | |
- name: Update docker image tag | |
uses: mikefarah/[email protected] | |
with: | |
cmd: | | |
yq -i '.services.panther_ros.image = "husarion/panther:${{ github.event.inputs.image_tag }}" | (... | select(tag == "!!merge")) tag = ""' demo/compose.minimal-setup.yaml | |
yq -i '.services.panther_gazebo.image = "husarion/panther-gazebo:${{ github.event.inputs.image_tag }}" | (... | select(tag == "!!merge")) tag = ""' demo/compose.simulation.yaml | |
- name: Commit changes to target branch | |
uses: EndBug/add-and-commit@v9 | |
with: | |
message: Update docker image tag | |
author_name: action-bot | |
author_email: [email protected] |