mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-05-13 23:12:11 +02:00
github: update actions for updated branching logic
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
e1f81e8f4b
commit
c9149a7663
2
.github/workflows/branch_deploy.yml
vendored
2
.github/workflows/branch_deploy.yml
vendored
|
|
@ -1,7 +1,7 @@
|
|||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- master
|
||||
- develop
|
||||
paths:
|
||||
- '.github/**'
|
||||
- 'app/**'
|
||||
|
|
|
|||
2
.github/workflows/deploy_snapshot.yml
vendored
2
.github/workflows/deploy_snapshot.yml
vendored
|
|
@ -1,7 +1,7 @@
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- develop
|
||||
|
||||
name: Deploy snapshot builds
|
||||
jobs:
|
||||
|
|
|
|||
4
.github/workflows/draft_new_release.yml
vendored
4
.github/workflows/draft_new_release.yml
vendored
|
|
@ -10,6 +10,8 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
ref: 'release'
|
||||
- name: Extract version from milestone
|
||||
run: |
|
||||
VERSION="${{ github.event.milestone.title }}"
|
||||
|
|
@ -41,5 +43,5 @@ jobs:
|
|||
with:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
head: release/${{ env.RELEASE_VERSION }}
|
||||
base: master
|
||||
base: release
|
||||
title: Release ${{ env.RELEASE_VERSION }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue