Skip to content

Commit

Permalink
[ci] Testing things
Browse files Browse the repository at this point in the history
  • Loading branch information
akrck02 committed Mar 29, 2024
1 parent 8e2d8b1 commit aedfb12
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/publish_version.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: publish-version

on:
push:
branches: "main"

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

# Get values for cache paths to be used in later steps
- id: go-cache-paths
run: |
echo "::set-output name=go-build::$(go env GOCACHE)"
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
# Cache go build cache, used to speedup go test
- name: Go Build Cache
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

# Cache go mod cache, used to speedup builds
- name: Go Mod Cache
uses: actions/cache@v2
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}

- name: Read version
id: version
run: echo ::set-output name=version::$(cat VERSION)

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21.8

- name: Build
run: sh compile.sh

- name: Create a Release of commit
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: ${{ github.token }}
automatic_release_tag: ${{ steps.version.outputs.version }}
prerelease: false
title: valhalla-core-sdk
files: |
LICENSE
dist/*
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dist
cache
2 changes: 2 additions & 0 deletions compile.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
mkdir dist
go build -o ./dist/valhalla-core-sdk
1 change: 1 addition & 0 deletions valhalla-sdk.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package valhallacoresdk
1 change: 1 addition & 0 deletions version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v0.1

0 comments on commit aedfb12

Please sign in to comment.