Skip to content

Run test on Go 1.21 and 1.22 (#248) #39

Run test on Go 1.21 and 1.22 (#248)

Run test on Go 1.21 and 1.22 (#248) #39

Workflow file for this run

on:
push:
tags:
- v*
jobs:
tag-subpackges:
name: push subpackage tags
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: push tags
run: |
git remote set-url origin https://${GITHUB_TOKEN}@github.com/at-wat/mqtt-go.git
git tag paho/$(basename ${TAG})
git push origin paho/$(basename ${TAG})
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG: ${{ github.ref }}