Skip to content

Action test on Ubuntu #323

Action test on Ubuntu

Action test on Ubuntu #323

name: Action test on Ubuntu
on:
schedule:
- cron: "0 2 * * MON-FRI" # Runs at 02:00 UTC
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Show current file
run: cat ${{github.workspace}}/test.yaml
shell: bash
- name: Replace one value
uses: GuillaumeFalourd/replace-values-action@main
with:
file_path: ${{github.workspace}}/test.yaml
parameters: REGISTRY_TO_UPDATE >> new_registry_value
- name: Replace multiple values
uses: GuillaumeFalourd/replace-values-action@main
with:
file_path: ${{github.workspace}}/test.yaml
parameters: |
ACCOUNT_TO_UPDATE>>new_account_value
URL_TO_UPDATE >> new_url_value
- name: Show updated file
run: cat ${{github.workspace}}/test.yaml
shell: bash