Skip to content

add option to boost with linked Mastodon acc #13

add option to boost with linked Mastodon acc

add option to boost with linked Mastodon acc #13

Workflow file for this run

name: Tag Submodule
on:
push:
tags:
- '*'
jobs:
tag_submodule:
name: Tag submodule
if: github.repository_owner == 'neodb-social'
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
with:
submodules: 'true'
token: ${{ secrets.GH_TOKEN_ORG_ACTION }}
- name: Configure git
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions@users.noreply.github.com"
- name: Push tag to submodule
env:
TAG_NAME: neodb-${{ github.ref_name }}
run: |
cd neodb-takahe
git tag "$TAG_NAME"
git push origin "$TAG_NAME"