mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 15:14:41 +00:00
69 lines
2.1 KiB
YAML
69 lines
2.1 KiB
YAML
name: ASF-docker-publish-main
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
PLATFORMS: linux/amd64,linux/arm,linux/arm64
|
|
TAG: main
|
|
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Login to ghcr.io
|
|
uses: docker/login-action@v1
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GH_PACKAGES_PAT }}
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Prepare environment outputs
|
|
shell: sh
|
|
run: |
|
|
set -eu
|
|
|
|
echo "DATE_ISO8601=$(date --iso-8601=seconds --utc)" >> "$GITHUB_ENV"
|
|
echo "GHCR_REPOSITORY=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_ENV"
|
|
echo "DH_REPOSITORY=$(echo ${{ secrets.DOCKERHUB_USERNAME }}/${{ github.event.repository.name }} | tr '[:upper:]' '[:lower:]')" >> "$GITHUB_ENV"
|
|
|
|
- name: Build and publish Docker image from Dockerfile
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: .
|
|
platforms: ${{ env.PLATFORMS }}
|
|
build-args: STEAM_TOKEN_DUMPER_TOKEN=${{ secrets.STEAM_TOKEN_DUMPER_TOKEN }}
|
|
labels: |
|
|
org.opencontainers.image.created=${{ env.DATE_ISO8601 }}
|
|
org.opencontainers.image.version=${{ github.sha }}
|
|
org.opencontainers.image.revision=${{ github.sha }}
|
|
tags: |
|
|
ghcr.io/${{ env.GHCR_REPOSITORY }}:${{ env.TAG }}
|
|
${{ env.DH_REPOSITORY }}:${{ env.TAG }}
|
|
push: true
|
|
|
|
- name: Update DockerHub repository description
|
|
continue-on-error: true
|
|
uses: peter-evans/dockerhub-description@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
repository: ${{ env.DH_REPOSITORY }}
|
|
short-description: ${{ github.event.repository.description }}
|