Skip to content

Commit

Permalink
Merge pull request #53 from rancher/release-action
Browse files Browse the repository at this point in the history
add release-go github action
  • Loading branch information
tashima42 authored Oct 19, 2023
2 parents 14e76d6 + 9fc7ac1 commit 1618761
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release-go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Check Go versions and create releases
on:
schedule:
- cron: "0 9 * * *"
workflow_dispatch:
jobs:
release_go_versions:
name: Check Go versions and create releases
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: setup ecm-distro-tools
uses: rancher/ecm-distro-tools@v0.24.1
with:
version: v0.24.1
- name: check go versions and release
run: |
OS=$(uname -s)
ARCH=$(uname -m)
[[ $ARCH="x86_64" ]] && ARCH="amd64"
rke2_release-${OS,,}-${ARCH} image-build-base-release

0 comments on commit 1618761

Please sign in to comment.