Skip to content

feat: Regenerate output files. #12

feat: Regenerate output files.

feat: Regenerate output files. #12

Workflow file for this run

name: versions
on:
workflow_dispatch:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- main
- master
- releases/*
paths-ignore:
- '**.md'
jobs:
local-version:
runs-on: ubuntu-latest
name: Update AndroidManifest.xml
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Mandatory to use the extract version from tag action
- name: Extract version from tag
uses: ./
- name: Output the variables
run: |
echo The major was $MAJOR
echo The minor was $MINOR
echo The patch was $PATCH
echo The pre-release was $PRE_RELEASE
echo The number of commits was $NUMBER_OF_COMMITS
echo The number of commits since tag was $NUMBER_OF_COMMITS_SINCE_TAG