2021-08-30 15:10:22 +00:00
|
|
|
name: Docker
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
jobs:
|
2024-05-29 16:43:36 +00:00
|
|
|
publish_jenkins:
|
2021-08-30 15:10:22 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
2021-08-30 15:14:50 +00:00
|
|
|
- name: Log into registry
|
2021-08-30 15:10:22 +00:00
|
|
|
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_LOGIN }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2023-12-14 09:28:20 +00:00
|
|
|
- name: Update version
|
|
|
|
run: ./autoupdate.sh
|
2021-08-30 15:14:50 +00:00
|
|
|
- name: Deploy
|
2021-08-30 15:10:22 +00:00
|
|
|
run: ./deploy
|
2024-05-29 16:43:36 +00:00
|
|
|
publish_jenkins_ssh-agent:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Log into registry
|
|
|
|
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_LOGIN }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Update version
|
|
|
|
working-directory: ./ssh-agent/
|
|
|
|
run: ./autoupdate.sh
|
|
|
|
- name: Deploy
|
|
|
|
working-directory: ./ssh-agent/
|
|
|
|
run: ./deploy
|