1
0
mirror of https://github.com/bplein/factorio-docker.git synced 2025-02-19 19:10:26 +02:00

Update docker-publish-github.yml

This commit is contained in:
Bill Plein 2023-03-15 11:52:57 -05:00 committed by GitHub
parent 5b80d7192b
commit b66bb342f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,8 +69,8 @@ jobs:
- name: Extract all versions from buildinfo.json
id: get-version
run: |
VERSION=$(jq -r '.[] | .tags | select( index("latest"))|.[0]' buildinfo.json)
tags=$(jq -r '.[] | .tags | select( index("latest"))|.[0]' buildinfo.json)
VERSION=$(cat buildinfo.json | jq -r '.[] | .tags | select( index("latest"))|.[0]')
tags=$(cat buildinfo.json | jq -r '.[] | .tags | select( index("latest"))|.[0]')
- name: Show versions
run: |
tags="${{ steps.get-version.outputs.value }}"