Skip to content

undo testing code

undo testing code #1

Workflow file for this run

---
name: Release Build
on:
push:
tags:
- v*
jobs:
push:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Build image
run: "docker build . --tag ghcr.io/redstonecrafter0/satisfactory-dedicated-server-exporter:latest --tag ghcr.io/redstonecrafter0/satisfactory-dedicated-server-exporter:${{ github.ref_name }} --tag ghcr.io/redstonecrafter0/satisfactory-dedicated-server-exporter:${{ github.sha }}"
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Push image
run: "docker push --all-tags ghcr.io/redstonecrafter0/satisfactory-dedicated-server-exporter"