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 :
should_skip : ${{ steps.skip_check.outputs.should_skip }}
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-06-02 11:59:44 +00:00
secrets :
BUILD_HOSTNAME : ${{ secrets.BUILD_HOSTNAME }}
BUILD_USERNAME : ${{ secrets.BUILD_USERNAME }}
BUILD_KEY : ${{ secrets.BUILD_KEY }}
2022-06-17 15:37:50 +00:00
with :
2022-07-12 08:10:45 +00:00
STACK_ORCHESTRATOR_REF : "f2fd766f5400fcb9eb47b50675d2e3b1f2753702"
2022-09-23 21:25:26 +00:00
GO_ETHEREUM_REF : "2ddad81c1a04ff494a706f2f757a0f75d2616fbd"
IPLD_ETH_DB_REF : "d4d704616ba0f87733853c78787bf54c9868d2ac"
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 :
- uses : actions/checkout@v2
- name : Get the version
id : vars
2022-09-23 21:25:26 +00:00
run : |
echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
echo ::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/})
2022-05-18 18:45:55 +00:00
- name : Run docker build
run : make docker-build
2022-09-23 21:25:26 +00:00
- name : Tag docker image SHA
2022-09-20 15:52:06 +00:00
run : docker tag cerc-io/ipld-eth-server git.vdb.to/cerc-io/ipld-eth-server/ipld-eth-server:${{steps.vars.outputs.sha}}
2022-09-23 21:25:26 +00:00
- name : Tag docker image TAG
2022-09-23 22:03:25 +00:00
run : docker tag git.vdb.to/cerc-io/ipld-eth-server/ipld-eth-server:${{steps.vars.outputs.sha}} git.vdb.to/cerc-io/ipld-eth-server/ipld-eth-server:${{steps.vars.outputs.tag}}
2022-05-18 18:45:55 +00:00
- name : Docker Login
2022-09-23 21:25:26 +00:00
run : echo ${{ secrets.GITEA_TOKEN }} | docker login https://git.vdb.to -u cerccicd --password-stdin
- name : Docker Push SHA
2022-09-20 15:52:06 +00:00
run : docker push git.vdb.to/cerc-io/ipld-eth-server/ipld-eth-server:${{steps.vars.outputs.sha}}
2022-09-23 21:25:26 +00:00
- name : Docker Push TAG
run : docker push git.vdb.to/cerc-io/ipld-eth-server/ipld-eth-server:${{steps.vars.outputs.tag}}