Skip to content

chore(deps): bump actions/checkout from 4.2.1 to 4.2.2 (#68) #82

chore(deps): bump actions/checkout from 4.2.1 to 4.2.2 (#68)

chore(deps): bump actions/checkout from 4.2.1 to 4.2.2 (#68) #82

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
actions: write
contents: write
pull-requests: write
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v4
id: release
with:
release-type: simple
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Upload Release Artifact
if: ${{ steps.release.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
sed -i "s/__VERSION__/$(cat version.txt)/g" cli/asdf-plugin-manager.sh
cp -a cli/asdf-plugin-manager.sh asdf-plugin-manager-${{ steps.release.outputs.tag_name }}.sh
gh release upload ${{ steps.release.outputs.tag_name }} asdf-plugin-manager-${{ steps.release.outputs.tag_name }}.sh