forked from szandany/Liquibase_Snowflake_Example
-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (51 loc) · 1.71 KB
/
lb_rollback_onedb.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# This is a basic workflow to help you get started with Actions
name: rollback_one_database
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
workflow_dispatch:
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]
inputs:
tag:
description: 'Enter tag to rollback'
required: true
db:
description: 'Database to rollback (DEV, TEST, PROD)'
required: true
env:
LIQUIBASE_PRO_LICENSE_KEY: ${{ secrets.LIQUIBASE_PRO_LICENSE_KEY }}
LIQUIBASE_COMMAND_URL: ${{ secrets.LIQUIBASE_COMMAND_URL }}
LIQUIBASE_COMMAND_USERNAME: ${{ secrets.LIQUIBASE_COMMAND_USERNAME }}
LIQUIBASE_COMMAND_PASSWORD: ${{ secrets.LIQUIBASE_COMMAND_PASSWORD }}
LIQUIBASE_COMMAND_CHANGELOG_FILE: ${{ secrets.LIQUIBASE_COMMAND_CHANGELOG_FILE }}
LIQUIBASE_COMMAND_TAG: ${{ github.event.inputs.tag }}
LIQUIBASE_HUB_MODE: off
DB_ENV: ${{ github.event.inputs.db }}
jobs:
Rollback_Job:
runs-on: ubuntu-latest
environment:
name: ${{ github.event.inputs.db }}
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.LB_GH_TOKEN }}
- name: Rolling back changes
uses: docker://liquibase/liquibase
with:
args: rollback
- name: Running history command
uses: docker://liquibase/liquibase
with:
args: liquibase history
- name: Copy Snapshot back
run: |
cp -r BASE/Snapshot*_${{ github.event.inputs.db }}.json .
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "Restore snapshotfile"
git push