Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade CI/CD #264

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: [ master ]
tags: [ "*" ]
paths-ignore: [ "README.md", "history.md", "release-notes.md" ]
paths-ignore: [ "README.md", "CHANGELOG.md", "release-notes.md" ]

pull_request:
branches: [ master ]
Expand All @@ -22,12 +22,12 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: false

- name: Install Lazarus
uses: gcarreno/setup-lazarus@v3.2
uses: gcarreno/setup-lazarus@v3
with:
with-cache: false
lazarus-version: ${{ matrix.lazarus-versions }}
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:

- name: Upload binary (macOS)
if: ${{ (matrix.operating-system == 'macos-latest') && (matrix.lazarus-versions == 'stable') }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: PascalCoinMacOS
path: |
Expand All @@ -85,14 +85,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set output
id: vars
run: echo "tag=${GITHUB_REF#refs/*/}" >> ${GITHUB_OUTPUT}

- name: Download the Release binary
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3

- name: List files
run: |
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016-2022 Pascal Cryptocurrency developers based on original Albert Molina source code
Copyright (c) 2016-2023 Pascal Cryptocurrency developers based on original Albert Molina source code

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


```
Copyright (c) 2016-2022 Pascal developers based on original Albert Molina source code
Copyright (c) 2016-2023 Pascal developers based on original Albert Molina source code
```

Please use at your own risk.
Expand Down
3 changes: 3 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# PascalCoin v5.7.2
- Minor update on cache mem log event

# PascalCoin v5.7.1

- Fix cls function TAccountComp.EqualOperationBlocks
Expand Down
2 changes: 1 addition & 1 deletion src/gui-classic/UFRMAbout.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ object FRMAbout: TFRMAbout
BorderStyle = bsNone
Ctl3D = False
Lines.Strings = (
'Copyright (c) 2016 - 2022 PascalCoin developers'
'Copyright (c) 2016 - 2023 PascalCoin developers'
'Based on Albert Molina original source code'
''

Expand Down
2 changes: 1 addition & 1 deletion src/gui-classic/UFRMAbout.lfm
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ object FRMAbout: TFRMAbout
Width = 478
BorderStyle = bsNone
Lines.Strings = (
'Copyright (c) 2016 - 2022 PascalCoin developers'
'Copyright (c) 2016 - 2023 PascalCoin developers'
'Based on Albert Molina original source code'
''
'Pascal (aka Pascal Coin) is P2P cryptocurrency without the need for historical operations. This software comprises a node within the Pascal network.'
Expand Down
Loading