File tree Expand file tree Collapse file tree
.github/actions/setup-rclone Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -105,6 +105,8 @@ runs:
105105 shell : bash
106106 run : |
107107 set -euo pipefail
108+ # Load rclone module
109+ module load rclone/1.68.1
108110 # Store configuration in project-local directory
109111 mkdir -p ./.rclone_config
110112 tee ./.rclone_config/rclone.conf > /dev/null <<EOF
@@ -115,13 +117,15 @@ runs:
115117 access_key_id = ${{ inputs.access_key_id }}
116118 secret_access_key = ${{ inputs.secret_access_key }}
117119 EOF
118- # Export environment variable so ./ rclone automatically picks up this config
120+ # Export environment variable so rclone automatically picks up this config
119121 echo "RCLONE_CONFIG=$(pwd)/.rclone_config/rclone.conf" >> $GITHUB_ENV
120122
121123 - name : Verify rclone Configuration
122124 shell : bash
123125 run : |
124126 set -euo pipefail
127+ # Load rclone module
128+ module load rclone/1.68.1
125129 echo "Verifying rclone configuration..."
126130 rclone config show
127131
@@ -131,6 +135,8 @@ runs:
131135 shell : bash
132136 run : |
133137 set -euo pipefail
138+ # Load rclone module
139+ module load rclone/1.68.1
134140
135141 # Validate required inputs for download mode
136142 if [ -z "${{ inputs.dockerfile_name }}" ] || [ -z "${{ inputs.version }}" ]; then
@@ -199,6 +205,8 @@ runs:
199205 shell : bash
200206 run : |
201207 set -euo pipefail
208+ # Load rclone module
209+ module load rclone/1.68.1
202210
203211 # Validate required inputs for upload mode
204212 if [ -z "${{ inputs.upload_file }}" ]; then
Original file line number Diff line number Diff line change 11# use node:10
22FROM debian:stretch
3- LABEL org.opencontainers.image.version=0.0.13
3+ LABEL org.opencontainers.image.version=0.0.14
44LABEL org.opencontainers.image.devmode=true
55
66# install some common tools (these packages have many vulnerabilities in node:10)
You can’t perform that action at this time.
0 commit comments