Skip to content

Bump software.amazon.awssdk.crt:aws-crt from 0.33.9 to 0.33.11 (#1224) #4

Bump software.amazon.awssdk.crt:aws-crt from 0.33.9 to 0.33.11 (#1224)

Bump software.amazon.awssdk.crt:aws-crt from 0.33.9 to 0.33.11 (#1224) #4

Workflow file for this run

# This workflow will tag all commits to the default branch with 'unstable'
# For more information see: https://docs.github.com/en/rest/git/refs?apiVersion=2022-11-28#update-a-reference
name: Tag Default Branch Commits with Unstable
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 1
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Update unstable tag
uses: actions/github-script@v5
with:
script: |
github.rest.git.updateRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'tags/unstable',
force: true,
sha: context.sha
})