Skip to content

Commit

Permalink
chore: add jobs to publish fedora, opensuse, oracle
Browse files Browse the repository at this point in the history
Signed-off-by: Massimiliano Giovagnoli <[email protected]>
  • Loading branch information
maxgio92 committed Apr 28, 2023
1 parent 94300f0 commit b165e1d
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
42 changes: 42 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,48 @@ jobs:
version: "2"
- name: Publish results to S3
run: make publish/debian
fedora:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: '>=1.19.0'
- name: Install AWS CLI
id: install-aws-cli
uses: unfor19/install-aws-cli-action@master
with:
version: "2"
- name: Publish results to S3
run: make publish/fedora
opensuse:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: '>=1.19.0'
- name: Install AWS CLI
id: install-aws-cli
uses: unfor19/install-aws-cli-action@master
with:
version: "2"
- name: Publish results to S3
run: make publish/opensuse
oracle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
with:
go-version: '>=1.19.0'
- name: Install AWS CLI
id: install-aws-cli
uses: unfor19/install-aws-cli-action@master
with:
version: "2"
- name: Publish results to S3
run: make publish/oracle
ubuntu:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ oci_image := quay.io/maxgio92/$(app)

bins := go golangci-lint gofumpt aws

DISTROS ?= amazonlinux amazonlinux2 amazonlinux2022 centos debian ubuntu
DISTROS ?= amazonlinux amazonlinux2 amazonlinux2022 centos debian fedora opensuse oracle ubuntu

RESULTS_DIR := e2e/results

Expand Down

0 comments on commit b165e1d

Please sign in to comment.