Compare commits
No commits in common. "vlbeaudoin/actions" and "main" have entirely different histories.
vlbeaudoin
...
main
3 changed files with 0 additions and 70 deletions
|
@ -1,29 +0,0 @@
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'main'
|
|
||||||
- 'vlbeaudoin/*'
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: docker
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- run: mkdir -p artifacts
|
|
||||||
- uses: actions/setup-go@v5
|
|
||||||
with:
|
|
||||||
go-version: '1.24.5'
|
|
||||||
- run: go build -a -o agecem-org ./cmd/agecemorg/
|
|
||||||
- uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: executable
|
|
||||||
path: agecem-org
|
|
||||||
help:
|
|
||||||
needs: [build]
|
|
||||||
runs-on: docker
|
|
||||||
steps:
|
|
||||||
- uses: actions/download-artifact@v3
|
|
||||||
with:
|
|
||||||
name: executable
|
|
||||||
- run: chmod +x agecem-org
|
|
||||||
- run: mv agecem-org /usr/bin/agecem-org
|
|
||||||
- run: agecem-org help
|
|
|
@ -1,20 +0,0 @@
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
#- 'main'
|
|
||||||
#- 'vlbeaudoin/*'
|
|
||||||
jobs:
|
|
||||||
validate-go:
|
|
||||||
runs-on: docker
|
|
||||||
steps:
|
|
||||||
- name: Set up Go
|
|
||||||
uses: actions/setup-go@v5
|
|
||||||
with:
|
|
||||||
go-version: '1.24.5' # Adjust to your required version
|
|
||||||
- name: check go version
|
|
||||||
run: go version
|
|
||||||
lab-check-new-job-go-version:
|
|
||||||
runs-on: docker
|
|
||||||
steps:
|
|
||||||
- name: check go version
|
|
||||||
run: go version
|
|
|
@ -1,21 +0,0 @@
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
#- 'build/*'
|
|
||||||
jobs:
|
|
||||||
hello-world:
|
|
||||||
runs-on: docker
|
|
||||||
steps:
|
|
||||||
- run: echo Hello world from dockerhost
|
|
||||||
print-content:
|
|
||||||
runs-on: docker
|
|
||||||
steps:
|
|
||||||
- name: list directory contents
|
|
||||||
run: ls -la
|
|
||||||
checkout-then-print-content:
|
|
||||||
runs-on: docker
|
|
||||||
steps:
|
|
||||||
- name: checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: list directory contents
|
|
||||||
run: ls -la
|
|
Loading…
Add table
Add a link
Reference in a new issue