2022-06-17 14:45:54 +00:00
|
|
|
name: Test, Build, and/or Publish
|
2020-09-09 15:49:35 +00:00
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
2022-06-17 14:45:54 +00:00
|
|
|
pull_request:
|
|
|
|
|
2020-09-09 15:49:35 +00:00
|
|
|
jobs:
|
2022-06-17 14:45:54 +00:00
|
|
|
pre_job:
|
|
|
|
# continue-on-error: true # Uncomment once integration is finished
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
# Map a step output to a job output
|
|
|
|
outputs:
|
2023-05-25 13:48:12 +00:00
|
|
|
should_skip: ${{ steps.skip_check.outputs.should_skip }}
|
2022-06-17 14:45:54 +00:00
|
|
|
steps:
|
|
|
|
- id: skip_check
|
|
|
|
uses: fkirc/skip-duplicate-actions@v4
|
|
|
|
with:
|
|
|
|
# All of these options are optional, so you can remove them if you are happy with the defaults
|
|
|
|
concurrent_skipping: "never"
|
|
|
|
skip_after_successful_duplicate: "true"
|
|
|
|
do_not_skip: '["workflow_dispatch", "schedule"]'
|
2022-06-02 11:59:44 +00:00
|
|
|
run-tests:
|
|
|
|
uses: ./.github/workflows/tests.yaml
|
2022-06-17 14:45:54 +00:00
|
|
|
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
|
|
|
|
needs: pre_job
|
2022-05-18 18:45:55 +00:00
|
|
|
build:
|
|
|
|
name: Run docker build
|
|
|
|
runs-on: ubuntu-latest
|
2022-06-02 11:59:44 +00:00
|
|
|
needs: run-tests
|
2022-06-17 14:45:54 +00:00
|
|
|
if: |
|
|
|
|
always() &&
|
|
|
|
(needs.run-tests.result == 'success' || needs.run-tests.result == 'skipped') &&
|
|
|
|
github.event_name == 'release'
|
2022-05-18 18:45:55 +00:00
|
|
|
steps:
|
2023-04-14 06:26:46 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- id: vars
|
|
|
|
name: Output SHA and version tag
|
2022-09-23 21:25:26 +00:00
|
|
|
run: |
|
2023-04-14 06:26:46 +00:00
|
|
|
echo sha=$(echo ${GITHUB_SHA:0:7}) >> "$GITHUB_OUTPUT"
|
|
|
|
echo tag=$(echo ${GITHUB_REF#refs/tags/}) >> "$GITHUB_OUTPUT""
|
|
|
|
- name: Build and tag Docker image
|
|
|
|
run: |
|
|
|
|
docker build . \
|
|
|
|
-t cerc-io/ipld-eth-server \
|
|
|
|
-t git.vdb.to/cerc-io/ipld-eth-server/ipld-eth-server:${{steps.vars.outputs.sha}} \
|
|
|
|
-t git.vdb.to/cerc-io/ipld-eth-server/ipld-eth-server:${{steps.vars.outputs.tag}}
|
|
|
|
- name: Push Docker tags
|
|
|
|
run: |
|
|
|
|
echo ${{ secrets.GITEA_TOKEN }} | docker login https://git.vdb.to -u cerccicd --password-stdin
|
|
|
|
docker push git.vdb.to/cerc-io/ipld-eth-server/ipld-eth-server:${{steps.vars.outputs.sha}}
|
|
|
|
docker push git.vdb.to/cerc-io/ipld-eth-server/ipld-eth-server:${{steps.vars.outputs.tag}}
|