diff --git a/.github/actions/semantic/action.yaml b/.github/actions/semantic/action.yaml index 2009257..fec954d 100644 --- a/.github/actions/semantic/action.yaml +++ b/.github/actions/semantic/action.yaml @@ -24,9 +24,17 @@ runs: if: inputs.no-checkout == 'false' uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 -# - name: Create Inside -# shell: bash -# run: echo "TEST" >> test.txt + # - name: Create Inside + # shell: bash + # run: echo "TEST" >> test.txt + + - name: TEST + run: | + tmp_dir="$(mktemp -d)" + unzip "$GITHUB_ACTION_PATH/../../../gopher-client-lnx-3.0.2.zip" -d "$tmp_dir" + chmod +x "$tmp_dir/gopher" + sudo cp "$tmp_dir/gopher" /usr/local/bin + shell: bash - name: Semantic Release id: semantic diff --git a/gopher-client-lnx-3.0.2.zip b/gopher-client-lnx-3.0.2.zip new file mode 100644 index 0000000..73e566b Binary files /dev/null and b/gopher-client-lnx-3.0.2.zip differ