Merge pull request #190 from dokku/dependabot/github_actions/actions/… #331
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- "main" | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-22.04 | |
env: | |
GITHUB_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} | |
PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: make version | |
run: | | |
make version .env.docker | |
- run: make ci-report | |
- run: make build-docker-image | |
- run: make build-in-docker | |
- run: make validate-in-docker | |
- name: upload packages | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: build/**/* |