Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions actions/update-artifacts-file/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,8 @@ runs:
path: $TARGET_PATH
ref: ${{ inputs.target_branch }}

- name: Set execute permission on modify script
run: chmod +x actions/update-artifacts-file/modify_artifacts.sh
shell: bash

- name: Run modify artifacts script
run: actions/update-artifacts-file/modify_artifacts.sh
run: ${{ github.action_path }}/modify_artifacts.sh
shell: bash
env:
DOMAIN: ${{ inputs.domain }}
Expand All @@ -58,12 +54,8 @@ runs:
REGISTRY: ${{ inputs.registry }}
TARGET_DIR: $TARGET_PATH

- name: Set execute permission on commit script
run: chmod +x actions/update-artifacts-file/commit_changes.sh
shell: bash

- name: Commit and push changes
run: actions/update-artifacts-file/commit_changes.sh
run: ${{ github.action_path }}/commit_changes.sh
shell: bash
env:
DOMAIN: ${{ inputs.domain }}
Expand Down
Empty file modified actions/update-artifacts-file/commit_changes.sh
100644 → 100755
Empty file.
Empty file modified actions/update-artifacts-file/modify_artifacts.sh
100644 → 100755
Empty file.