Add version support for the docker builds & local builds. (#128)

Add experimental support for github actions
This commit is contained in:
Redblueflame
2021-03-29 16:51:49 +02:00
committed by GitHub
parent bb8c0d264e
commit 0834759e1a
4 changed files with 28 additions and 6 deletions

View File

@@ -26,13 +26,18 @@
<a target="_blank" href="https://twitter.com/modrinth">Twitter</a>
</li>
</ul>
<span> © Guavy LLC </span>
<span> © Guavy LLC </span><br />
<span v-if="version !== 'unknown'">Version: {{ version }}</span>
</footer>
</template>
<script>
export default {
props: {
version: {
type: String,
default: process.env.version || 'unknown',
},
centered: {
type: Boolean,
default: false,