name: Publish on: push: branches: - "master" jobs: docker: strategy: matrix: arch: ["ubuntu-latest"] git-version: ["2.38.4"] runs-on: ${{ matrix.arch }} steps: - name: checkout uses: actions/checkout@v2 with: submodules: recursive - name: Set up SSH keys run: | mkdir -p ~/.ssh echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa ssh-keyscan -t rsa git.fascinated.cc >> ~/.ssh/known_hosts - name: Download docker run: | wget -q -O /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz \ && tar --extract --file /tmp/docker.tgz --directory /usr/bin --strip-components 1 --no-same-owner docker/docker \ && rm -rf /tmp/* - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Login to Repo uses: docker/login-action@v2 with: registry: git.fascinated.cc username: ${{ secrets.REPO_USERNAME }} password: ${{ secrets.REPO_TOKEN }} - name: Build and push (Node 18.x) uses: docker/build-push-action@v4 with: push: true context: ./gitea-runner file: ./gitea-runner/Node18xDockerfile tags: git.fascinated.cc/fascinated/gitea-runner:node-18 # - name: Build and push (Java 17) # uses: docker/build-push-action@v4 # with: # push: true # context: ./gitea-runner # file: ./gitea-runner/Java17Dockerfile # tags: git.fascinated.cc/fascinated/gitea-runner:java-17