Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
jackieli-tes committed Oct 22, 2024
0 parents commit 169ac51
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: ci
on:
push:
branches:
- main
pull_request:

env:
# Default minimum version of Go to support.
DEFAULT_GO_VERSION: 1.21

jobs:
lint:
runs-on: [self-hosted, linux]
steps:
- name: Configure git for private gitlab repo
run: |
git config --global url."https://gitlab-ci-token:${{ secrets.GITLAB_CR_PAT }}@gitlab.com/".insteadOf "https://gitlab.com/"
git clone https://gitlab.com/target-digital-transformation/environment-store.git
ls -R .
# - name: Set up Go
# uses: actions/setup-go@v5
# - name: Run GoReleaser
# uses: goreleaser/goreleaser-action@v6
# with:
# # either 'goreleaser' (default) or 'goreleaser-pro'
# distribution: goreleaser
# # 'latest', 'nightly', or a semver
# version: '~> v2'
# args: release --clean
#
# - uses: goreleaser/goreleaser-action@v2
# with:
# version: latest
# args: --snapshot --rm-dist

0 comments on commit 169ac51

Please sign in to comment.