This repository has been archived by the owner on Jan 26, 2024. It is now read-only.
chore(deps): bump the github-action-dependencies group with 1 update #85
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish for CI | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Push to Gitlab | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
git remote add ci https://AndroidCI:${{ secrets.GITLAB_TOKEN }}@gitlab.com/bourbonltd/gist-android.git | |
git push ci --tags |