updating exe #315
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
# This is a basic workflow to help you get started with Actions | |
# name: Update log file | |
# on: | |
# push: | |
# branches: | |
# - master | |
# jobs: | |
# update_log: | |
# runs-on: ubuntu-latest | |
# steps: | |
# # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
# - uses: actions/checkout@v3 | |
# with: | |
# ref: ${{ github.event.pull_request.head.sha }} | |
# fetch-depth: 0 | |
# - name: update the log file | |
# run: | | |
# git describe --tags --abbrev=0 > SPARC4_ACS/data/ACS_version.txt | |
# git log --invert-grep --grep="Updating the log.csv file" --grep="Merge branch" --pretty=format:"%h; %an; %as; %s" > log.csv | |
# git add . | |
# git config --local user.name "DBernardes" | |
# git commit -m "Updating the log.csv file" | |
# - name: Push changes # push the output folder to your repo | |
# uses: ad-m/github-push-action@master | |