Skip to content

Commit

Permalink
Merge pull request #110 from cdk-team/main-dev
Browse files Browse the repository at this point in the history
fix(gh action - release): automatically failed because it uses a deprecated version
  • Loading branch information
neargle authored Nov 15, 2024
2 parents 4e23c85 + adbae2f commit 022ff4c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: CDK CI

on:
workflow_dispatch:
release:
types: [released]
types: [released, prereleased]

jobs:

Expand All @@ -13,15 +14,15 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.15
go-version: 1.22.2
- uses: actions/setup-node@v1
with:
node-version: 10.x
- uses: actions/checkout@v2
with:
fetch-depth: 0

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
- name: Upload Release and Renew Changelog
env:
UPLOAD_URL: ${{ github.event.release.upload_url }}
Expand All @@ -30,6 +31,7 @@ jobs:
RELEASE_URL: ${{ github.event.release.url }}

run: |
set -euo pipefail
set -x
go get github.com/mitchellh/gox
Expand Down

0 comments on commit 022ff4c

Please sign in to comment.