Update module golang.org/x/net to v0.23.0 (#249) #40
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |