Compare commits
13 Commits
main
...
separate-i
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cf2f086005 | ||
|
|
19ebef986d | ||
|
|
fc51cd2711 | ||
|
|
86578e6421 | ||
|
|
8d55bd6af0 | ||
|
|
24f8a637d2 | ||
|
|
95393696ed | ||
|
|
9cbfe96d44 | ||
|
|
b7d99fcd08 | ||
|
|
a162ab19f3 | ||
|
|
15b9955f98 | ||
|
|
81b6cee363 | ||
|
|
76a911542b |
@ -1,20 +1,14 @@
|
||||
name: Docker Image CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "upgrade/separate-images/ci-cd-testing" ]
|
||||
pull_request:
|
||||
branches: [ "upgrade/separate-images/ci-cd-testing" ]
|
||||
name: Blockbook docker image | Build and Push
|
||||
run-name: Building and pushing blockbook docker image to DockerHub
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
|
||||
build-push-blockbook-docker:
|
||||
runs-on: self-hosted
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
13
.github/workflows/learn-github-actions.yml
vendored
Normal file
13
.github/workflows/learn-github-actions.yml
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
name: learn-github-actions
|
||||
run-name: ${{ github.actor }} is learning GitHub Actions
|
||||
on: [push]
|
||||
jobs:
|
||||
check-bats-version:
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: '20'
|
||||
- run: npm install -g bats
|
||||
- run: bats -v
|
||||
Loading…
Reference in New Issue
Block a user