From d021d6161b84b19deb42363cabf1b92b969fde79 Mon Sep 17 00:00:00 2001 From: rl544 <111494264+rl544@users.noreply.github.com> Date: Mon, 23 Mar 2026 15:44:03 +0900 Subject: [PATCH] Create golang_tip-trixie.yml --- .github/workflows/golang_tip-trixie.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/golang_tip-trixie.yml diff --git a/.github/workflows/golang_tip-trixie.yml b/.github/workflows/golang_tip-trixie.yml new file mode 100644 index 0000000..8414e57 --- /dev/null +++ b/.github/workflows/golang_tip-trixie.yml @@ -0,0 +1,23 @@ +name: golang_tip-trixie + +on: + workflow_dispatch: + +jobs: + download: + runs-on: ubuntu-latest + steps: + - name: Pull Images + run: | + docker pull golang:tip-trixie + + - name: Save Images to TAR + run: | + docker save golang:tip-trixie -o tip-trixie.tar + + - name: Upload Artifact + uses: actions/upload-artifact@v4 + with: + name: tip-trixie + path: tip-trixie.tar + retention-days: 1