Skip to content
Snippets Groups Projects
Unverified Commit f2584783 authored by Tim Campbell's avatar Tim Campbell Committed by GitHub
Browse files

Fixed mastodon version injection into containers via github actions (#24873)

parent c9e040fb
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ jobs:
id: version_vars
if: github.repository == 'mastodon/mastodon' && github.event_name == 'push' && github.ref_name == 'main'
run: |
echo mastodon_version_suffix=\"+edge-$(git rev-parse --short HEAD)\" >> $GITHUB_OUTPUT
echo mastodon_version_suffix=+edge-$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT
- uses: docker/build-push-action@v4
with:
......
......@@ -44,7 +44,7 @@ jobs:
- name: Generate version suffix
id: version_vars
run: |
echo mastodon_version_suffix=\"+nightly-$(date +'%Y%m%d')\" >> $GITHUB_OUTPUT
echo mastodon_version_suffix=+nightly-$(date +'%Y%m%d') >> $GITHUB_OUTPUT
- uses: docker/build-push-action@v4
with:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment