Compare commits

..

3 commits

Author SHA1 Message Date
Patrik Lundin 913b1e2506
Try running command 2024-06-25 10:27:13 +02:00
Patrik Lundin ddca6b40a7
Test some more modifications 2024-06-25 10:16:31 +02:00
Patrik Lundin ef6a594deb
Change output 2024-06-25 09:57:31 +02:00
3 changed files with 2 additions and 24 deletions

View file

@ -4,16 +4,6 @@ on:
types: [opened, synchronize, reopened]
jobs:
test:
runs-on: ubuntu-22.04
runs-on: docker
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- uses: https://github.com/actions/setup-go@v5
with:
go-version: '1.22.4'
- uses: https://github.com/ko-build/setup-ko@v0.7
with:
version: v0.15.4
- run: ko login platform.sunet.se --username ci-sunet-cdn --password ${{ secrets.CI_SUNET_CDN }}
- run: ko build
env:
KO_DOCKER_REPO: platform.sunet.se/sunet-cdn
- run: cat /etc/passwd

3
go.mod
View file

@ -1,3 +0,0 @@
module action-runner-testgo
go 1.22.4

View file

@ -1,9 +0,0 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("hello container")
}