Skip to content
Merged
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
6 changes: 4 additions & 2 deletions .github/workflows/foundry-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened, closed]
push:
branches:
- main
Expand All @@ -13,14 +14,15 @@ jobs:
foundry:
uses: BreadchainCoop/etherform/.github/workflows/_foundry-cicd.yml@Rubydusa/address-release-on-merge
permissions:
contents: read
contents: write
pull-requests: write
with:
deploy-on-pr: true
deploy-script: "script/Deploy.s.sol:Deploy"
run-slither: false
run-coverage: true
release-on-merge: true
etherform-ref: Rubydusa/address-release-on-merge
secrets:
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
RPC_URL: ${{ secrets.RPC_URL }}

18 changes: 0 additions & 18 deletions .github/workflows/release-testnet.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/SimpleNFT.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.20;
import {ERC721Upgradeable} from "@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol";
import {Ownable2StepUpgradeable} from "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol";

// trigger: re-test release-testnet workflow
// trigger: test all-in-one release-on-merge from _foundry-cicd.yml
contract SimpleNFT is ERC721Upgradeable, Ownable2StepUpgradeable {
uint256 private _nextTokenId;

Expand Down
Loading